pub type AtspiResult<T> = Result<T, AtspiError>;
enum AtspiResult<T> { Ok(T), Err(AtspiError), }
Contains the success value
Contains the error value