pub type StateReadResult<T, E> = Result<T, StateReadError<E>>;Expand description
Shorthand for a Result where the error type is a StateReadError.
Aliased Type§
pub enum StateReadResult<T, E> {
Ok(T),
Err(StateReadError<E>),
}pub type StateReadResult<T, E> = Result<T, StateReadError<E>>;Shorthand for a Result where the error type is a StateReadError.
pub enum StateReadResult<T, E> {
Ok(T),
Err(StateReadError<E>),
}