pub enum RowShift {
PushLeft {
to_x: usize,
},
PushRight {
from_x: usize,
},
PullFromLeft {
to_x: usize,
},
PullFromRight {
from_x: usize,
},
}Variants§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RowShift
impl<'de> Deserialize<'de> for RowShift
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Copy for RowShift
impl Eq for RowShift
impl StructuralPartialEq for RowShift
Auto Trait Implementations§
impl Freeze for RowShift
impl RefUnwindSafe for RowShift
impl Send for RowShift
impl Sync for RowShift
impl Unpin for RowShift
impl UnsafeUnpin for RowShift
impl UnwindSafe for RowShift
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