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.
Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".