pub type Result<T> = Result<T, StorageError>;Expand description
A specialized Result type for storage operations
Aliased Type§
enum Result<T> {
Ok(T),
Err(StorageError),
}pub type Result<T> = Result<T, StorageError>;A specialized Result type for storage operations
enum Result<T> {
Ok(T),
Err(StorageError),
}