pub type StorageResult<T> = Result<T, StorageError>;
pub enum StorageResult<T> { Ok(T), Err(StorageError), }
Contains the success value
Contains the error value