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