Type Alias essential_state_read_vm::StateReadResult

source ·
pub type StateReadResult<T, E> = Result<T, StateReadError<E>>;
Expand description

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

Aliased Type§

enum StateReadResult<T, E> {
    Ok(T),
    Err(StateReadError<E>),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(StateReadError<E>)

Contains the error value