pub enum DirtyState {
Clean,
DirtyExcept(ListenerKey),
DirtyAll,
}Variants§
Clean
Not dirty, no pending notifications
DirtyExcept(ListenerKey)
Dirty, notify all listeners except the specified one
DirtyAll
Dirty, notify all listeners
Trait Implementations§
Source§impl Clone for DirtyState
impl Clone for DirtyState
Source§fn clone(&self) -> DirtyState
fn clone(&self) -> DirtyState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for DirtyState
impl RefUnwindSafe for DirtyState
impl Send for DirtyState
impl Sync for DirtyState
impl Unpin for DirtyState
impl UnsafeUnpin for DirtyState
impl UnwindSafe for DirtyState
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more