pub enum SelectionType {
WordUnderCursor,
LineUnderCursor,
BlockUnderCursor,
Document,
}Expand description
Quick-select a region around the cursor.
Variants§
Trait Implementations§
Source§impl Clone for SelectionType
impl Clone for SelectionType
Source§fn clone(&self) -> SelectionType
fn clone(&self) -> SelectionType
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 SelectionType
impl Debug for SelectionType
Source§impl PartialEq for SelectionType
impl PartialEq for SelectionType
impl Copy for SelectionType
impl Eq for SelectionType
impl StructuralPartialEq for SelectionType
Auto Trait Implementations§
impl Freeze for SelectionType
impl RefUnwindSafe for SelectionType
impl Send for SelectionType
impl Sync for SelectionType
impl Unpin for SelectionType
impl UnsafeUnpin for SelectionType
impl UnwindSafe for SelectionType
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