pub trait DekuUpdate {
    fn update(&mut self) -> Result<(), DekuError>;
}
Expand description

“Updater” trait: apply mutations to a type

Required Methods

Apply updates

Implementors