pub enum ModifyState {
NotModifying,
Modifying {
pending_target_vp: Option<u32>,
},
}
Variants§
Implementations§
Source§impl ModifyState
impl ModifyState
pub fn is_modifying(&self) -> bool
Trait Implementations§
Source§impl Clone for ModifyState
impl Clone for ModifyState
Source§fn clone(&self) -> ModifyState
fn clone(&self) -> ModifyState
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ModifyState
impl Debug for ModifyState
impl Copy for ModifyState
Auto Trait Implementations§
impl Freeze for ModifyState
impl RefUnwindSafe for ModifyState
impl Send for ModifyState
impl Sync for ModifyState
impl Unpin for ModifyState
impl UnwindSafe for ModifyState
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