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