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