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