pub type AxResult<T = ()> = Result<T, AxError>;
A specialized Result type with AxError as the error type.
Result
AxError
enum AxResult<T = ()> { Ok(T), Err(AxError), }
Contains the success value
Contains the error value