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