pub enum usizeDelta {
Set(usize),
Add(usize),
Sub(usize),
Mult(usize),
Div(usize),
Mod(usize),
}Variants§
Trait Implementations§
Source§impl Clone for usizeDelta
impl Clone for usizeDelta
Source§fn clone(&self) -> usizeDelta
fn clone(&self) -> usizeDelta
Returns a duplicate 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 DeltaStruct<usizeDelta> for usize
impl DeltaStruct<usizeDelta> for usize
fn apply(&mut self, delta: &usizeDelta)
Auto Trait Implementations§
impl Freeze for usizeDelta
impl RefUnwindSafe for usizeDelta
impl Send for usizeDelta
impl Sync for usizeDelta
impl Unpin for usizeDelta
impl UnwindSafe for usizeDelta
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