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