pub struct UndoCommand {
pub id: u64,
pub name: String,
pub data: Vec<u8>,
pub after: Vec<u8>,
}Fields§
§id: u64§name: String§data: Vec<u8>§after: Vec<u8>Auto Trait Implementations§
impl Freeze for UndoCommand
impl RefUnwindSafe for UndoCommand
impl Send for UndoCommand
impl Sync for UndoCommand
impl Unpin for UndoCommand
impl UnsafeUnpin for UndoCommand
impl UnwindSafe for UndoCommand
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