Enum editor2::SelectPhase
source · pub enum SelectPhase {
Begin {
position: DisplayPoint,
add: bool,
click_count: usize,
},
BeginColumnar {
position: DisplayPoint,
goal_column: u32,
},
Extend {
position: DisplayPoint,
click_count: usize,
},
Update {
position: DisplayPoint,
goal_column: u32,
scroll_position: Point<f32>,
},
End,
}
Variants§
Trait Implementations§
source§impl Clone for SelectPhase
impl Clone for SelectPhase
source§fn clone(&self) -> SelectPhase
fn clone(&self) -> SelectPhase
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 Debug for SelectPhase
impl Debug for SelectPhase
source§impl PartialEq<SelectPhase> for SelectPhase
impl PartialEq<SelectPhase> for SelectPhase
source§fn eq(&self, other: &SelectPhase) -> bool
fn eq(&self, other: &SelectPhase) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for SelectPhase
Auto Trait Implementations§
impl RefUnwindSafe for SelectPhase
impl Send for SelectPhase
impl Sync for SelectPhase
impl Unpin for SelectPhase
impl UnwindSafe for SelectPhase
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