pub enum UndoableOperation {
Text(TextOperation),
Format(FormatOperation),
Json(JsonOperation),
}Expand description
An operation that can be undone.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for UndoableOperation
impl Clone for UndoableOperation
Source§fn clone(&self) -> UndoableOperation
fn clone(&self) -> UndoableOperation
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 UndoableOperation
impl Debug for UndoableOperation
Source§impl<'de> Deserialize<'de> for UndoableOperation
impl<'de> Deserialize<'de> for UndoableOperation
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
Auto Trait Implementations§
impl Freeze for UndoableOperation
impl RefUnwindSafe for UndoableOperation
impl Send for UndoableOperation
impl Sync for UndoableOperation
impl Unpin for UndoableOperation
impl UnwindSafe for UndoableOperation
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