Skip to main content

EntryManager

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.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§