Trait EntryManager

Source
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§

Source

fn mutate_entry(&mut self, state: EntryState) -> SourceResult<EntryState>

Mutates the entry state.

Implementors§