pub type IoResult<T, S> = Result<T, RuntimeError<S>>;
Expand description
Result of a operation that accesses storage
Aliased Type§
enum IoResult<T, S> {
Ok(T),
Err(RuntimeError<S>),
}
pub type IoResult<T, S> = Result<T, RuntimeError<S>>;
Result of a operation that accesses storage
enum IoResult<T, S> {
Ok(T),
Err(RuntimeError<S>),
}