pub type MemoryResult<T> = Result<T, MemoryError>;Expand description
The result of some memory operations which can fail.
Aliased Type§
pub enum MemoryResult<T> {
Ok(T),
Err(MemoryError),
}pub type MemoryResult<T> = Result<T, MemoryError>;The result of some memory operations which can fail.
pub enum MemoryResult<T> {
Ok(T),
Err(MemoryError),
}