pub type OperationResultStore = Result<Store, (Option<Store>, ErrorType)>;
pub enum OperationResultStore { Ok(Store), Err((Option<Store>, ErrorType)), }
Contains the success value
Contains the error value