pub enum SelectionPhase {
None,
Selecting,
Active,
}Expand description
Phase of the interactive selection lifecycle.
Variants§
None
No selection active.
Selecting
Mouse button down, drag in progress.
Active
Selection committed (mouse released).
Trait Implementations§
Source§impl Clone for SelectionPhase
impl Clone for SelectionPhase
Source§fn clone(&self) -> SelectionPhase
fn clone(&self) -> SelectionPhase
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 SelectionPhase
impl Debug for SelectionPhase
Source§impl PartialEq for SelectionPhase
impl PartialEq for SelectionPhase
impl Copy for SelectionPhase
impl Eq for SelectionPhase
impl StructuralPartialEq for SelectionPhase
Auto Trait Implementations§
impl Freeze for SelectionPhase
impl RefUnwindSafe for SelectionPhase
impl Send for SelectionPhase
impl Sync for SelectionPhase
impl Unpin for SelectionPhase
impl UnwindSafe for SelectionPhase
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