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