pub trait EntryManager: EntryReader {
    // Required method
    fn mutate_entry(&mut self, state: EntryState) -> SourceResult<EntryState>;
}Expand description
A trait to manage the entry state.
Required Methods§
Sourcefn mutate_entry(&mut self, state: EntryState) -> SourceResult<EntryState>
 
fn mutate_entry(&mut self, state: EntryState) -> SourceResult<EntryState>
Mutates the entry state.