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