pub type Result<T> = Result<T, StateError>;Expand description
Result type for operations that can fail
Aliased Type§
enum Result<T> {
Ok(T),
Err(StateError),
}pub type Result<T> = Result<T, StateError>;Result type for operations that can fail
enum Result<T> {
Ok(T),
Err(StateError),
}