MemoryResult

Type Alias MemoryResult 

Source
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),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(MemoryError)

Contains the error value