pub type AllocResult<T = ()> = Result<T, AllocError>;Expand description
A Result type with AllocError as the error type.
Aliased Type§
pub enum AllocResult<T = ()> {
Ok(T),
Err(AllocError),
}pub type AllocResult<T = ()> = Result<T, AllocError>;A Result type with AllocError as the error type.
pub enum AllocResult<T = ()> {
Ok(T),
Err(AllocError),
}