pub type MemoryResult<T> = Result<T, MemoryError>;
Expand description
Shorthand for a Result
where the error type is a MemoryError
.
Aliased Type§
pub enum MemoryResult<T> {
Ok(T),
Err(MemoryError),
}
pub type MemoryResult<T> = Result<T, MemoryError>;
Shorthand for a Result
where the error type is a MemoryError
.
pub enum MemoryResult<T> {
Ok(T),
Err(MemoryError),
}