pub type StoreReadItemResult = Result<(String, Vec<u8>), ReadError>;
enum StoreReadItemResult { Ok((String, Vec<u8>)), Err(ReadError), }
Contains the success value
Contains the error value