pub trait Adapter: Send + Sync { // Required method fn get(&mut self, name: &[u8]) -> Option<Result<Record>>; }
A repository adapter.
Returns the record with the given name.