pub enum TextUndoGrouping {
Space,
Newline,
Character(u64),
Backspace(u64),
Delete(usize),
Block,
Tab,
Cut,
Format,
Other,
}
Variants§
Trait Implementations§
Source§impl Clone for TextUndoGrouping
impl Clone for TextUndoGrouping
Source§fn clone(&self) -> TextUndoGrouping
fn clone(&self) -> TextUndoGrouping
Returns a copy 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 Default for TextUndoGrouping
impl Default for TextUndoGrouping
Source§fn default() -> TextUndoGrouping
fn default() -> TextUndoGrouping
Returns the “default value” for a type. Read more
Source§impl PartialEq for TextUndoGrouping
impl PartialEq for TextUndoGrouping
impl StructuralPartialEq for TextUndoGrouping
Auto Trait Implementations§
impl Freeze for TextUndoGrouping
impl RefUnwindSafe for TextUndoGrouping
impl Send for TextUndoGrouping
impl Sync for TextUndoGrouping
impl Unpin for TextUndoGrouping
impl UnwindSafe for TextUndoGrouping
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