pub enum Change {
Add(AddChangeData),
Remove(RemoveChangeData),
Move(MoveChangeData),
}Expand description
Represents different types of changes that can occur in the grid
Variants§
Add(AddChangeData)
Adding a new item to the grid
Remove(RemoveChangeData)
Removing an existing item from the grid
Move(MoveChangeData)
Moving an item to a new position
Trait Implementations§
impl Eq for Change
impl StructuralPartialEq for Change
Auto Trait Implementations§
impl Freeze for Change
impl RefUnwindSafe for Change
impl Send for Change
impl Sync for Change
impl Unpin for Change
impl UnwindSafe for Change
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