pub type PrefixResult = Result<(Box<[u8]>, Box<[u8]>), StoreError>;
Type alias for the result of a prefix iterator.
pub enum PrefixResult { Ok((Box<[u8]>, Box<[u8]>)), Err(StoreError), }
Contains the success value
Contains the error value