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