pub enum ShiftOperation {
InsertRow(usize),
DeleteRow(usize),
InsertColumn(usize),
DeleteColumn(usize),
}Expand description
Operation for shifting cell references in formulas.
Variants§
Trait Implementations§
Source§impl Clone for ShiftOperation
impl Clone for ShiftOperation
Source§fn clone(&self) -> ShiftOperation
fn clone(&self) -> ShiftOperation
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 Debug for ShiftOperation
impl Debug for ShiftOperation
impl Copy for ShiftOperation
Auto Trait Implementations§
impl Freeze for ShiftOperation
impl RefUnwindSafe for ShiftOperation
impl Send for ShiftOperation
impl Sync for ShiftOperation
impl Unpin for ShiftOperation
impl UnwindSafe for ShiftOperation
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