Type Alias essential_state_read_vm::StateSlotsResult

source ·
pub type StateSlotsResult<T> = Result<T, StateSlotsError>;
Expand description

Shorthand for a Result where the error type is a StateSlotsError.

Aliased Type§

enum StateSlotsResult<T> {
    Ok(T),
    Err(StateSlotsError),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(StateSlotsError)

Contains the error value