pub trait MetaDb { type Error: Debug; // Required method fn get_meta(&self, key: &[u8]) -> Result<Option<DBValue>, Self::Error>; }
Backend database trait. Read-only.
Get meta value, such as the journal.