pub trait EntryDataAccess<'a, T> {
// Required method
fn get(&'a self, key_type: KeyType) -> Option<T>;
}Expand description
The trait to access to data of entry according to key and data type.
pub trait EntryDataAccess<'a, T> {
// Required method
fn get(&'a self, key_type: KeyType) -> Option<T>;
}The trait to access to data of entry according to key and data type.