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