pub type AnsResult<T> = Result<T, AnsError>;
Result type alias using AnsError.
AnsError
pub enum AnsResult<T> { Ok(T), Err(AnsError), }
Contains the success value
Contains the error value