Type Alias AxResult
pub type AxResult<T = ()> = Result<T, AxErrorKind>;Aliased Type§
enum AxResult<T = ()> {
Ok(T),
Err(AxErrorKind),
}pub type AxResult<T = ()> = Result<T, AxErrorKind>;enum AxResult<T = ()> {
Ok(T),
Err(AxErrorKind),
}