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