pub enum ArrowOp {
SetDeltaCell {
sheet_id: SheetId,
row0: u32,
col0: u32,
old: Option<LiteralValue>,
new: Option<LiteralValue>,
},
SetComputedCell {
sheet_id: SheetId,
row0: u32,
col0: u32,
old: Option<LiteralValue>,
new: Option<LiteralValue>,
},
RestoreComputedRect {
sheet_id: SheetId,
sr0: u32,
sc0: u32,
er0: u32,
ec0: u32,
old: Vec<Vec<LiteralValue>>,
new: Vec<Vec<LiteralValue>>,
},
InsertRows {
sheet_id: SheetId,
before0: u32,
count: u32,
},
InsertCols {
sheet_id: SheetId,
before0: u32,
count: u32,
},
}Variants§
SetDeltaCell
SetComputedCell
RestoreComputedRect
InsertRows
InsertCols
Trait Implementations§
impl StructuralPartialEq for ArrowOp
Auto Trait Implementations§
impl Freeze for ArrowOp
impl RefUnwindSafe for ArrowOp
impl Send for ArrowOp
impl Sync for ArrowOp
impl Unpin for ArrowOp
impl UnsafeUnpin for ArrowOp
impl UnwindSafe for ArrowOp
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more