pub type Result<T> = Result<T, AliError>;
The result type of this crate.
enum Result<T> { Ok(T), Err(AliError), }
Contains the success value
Contains the error value