pub type SimpleResult<T> = Result<T, PanicOrBug>;Expand description
Result of a operation that doesn’t access storage
Aliased Type§
pub enum SimpleResult<T> {
Ok(T),
Err(PanicOrBug),
}pub type SimpleResult<T> = Result<T, PanicOrBug>;Result of a operation that doesn’t access storage
pub enum SimpleResult<T> {
Ok(T),
Err(PanicOrBug),
}