pub trait Store {
    type Algorithm: ?Sized;
    // Required method
    fn get(&self, key_id: &str) -> Option<&Self::Algorithm>;
}Expand description
A store of keys that can be retrieved by key id.
pub trait Store {
    type Algorithm: ?Sized;
    // Required method
    fn get(&self, key_id: &str) -> Option<&Self::Algorithm>;
}A store of keys that can be retrieved by key id.