HasModifiedFlag

Trait HasModifiedFlag 

Source
pub trait HasModifiedFlag {
    // Required methods
    fn has_modified_flag(&self) -> bool;
    fn set_modified_flag(&mut self);
}
Expand description

Objects that internally track a flag indicating whether they’ve been modified

Required Methods§

Source

fn has_modified_flag(&self) -> bool

Whether the object has been modified

Source

fn set_modified_flag(&mut self)

Mark object as modified

Implementors§