pub trait Adapter {
    fn get(&mut self, name: &str) -> Option<Result<Record>>;
}
Expand description

A repository adapter.

Required Methods

Returns the record with the given name.

Implementations on Foreign Types

Implementors