pub enum TwoPointsPlace {
Within(TwoPoints),
AheadOf(TwoPoints),
}Expand description
Variants§
Within(TwoPoints)
The mouse was on top of the character that matched.
AheadOf(TwoPoints)
The mouse was on the same line as the character.
Implementations§
Trait Implementations§
Source§impl Clone for TwoPointsPlace
impl Clone for TwoPointsPlace
Source§fn clone(&self) -> TwoPointsPlace
fn clone(&self) -> TwoPointsPlace
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 TwoPointsPlace
impl Debug for TwoPointsPlace
Source§impl Hash for TwoPointsPlace
impl Hash for TwoPointsPlace
Source§impl Ord for TwoPointsPlace
impl Ord for TwoPointsPlace
Source§fn cmp(&self, other: &TwoPointsPlace) -> Ordering
fn cmp(&self, other: &TwoPointsPlace) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for TwoPointsPlace
impl PartialEq for TwoPointsPlace
Source§impl PartialOrd for TwoPointsPlace
impl PartialOrd for TwoPointsPlace
impl Copy for TwoPointsPlace
impl Eq for TwoPointsPlace
impl StructuralPartialEq for TwoPointsPlace
Auto Trait Implementations§
impl Freeze for TwoPointsPlace
impl RefUnwindSafe for TwoPointsPlace
impl Send for TwoPointsPlace
impl Sync for TwoPointsPlace
impl Unpin for TwoPointsPlace
impl UnsafeUnpin for TwoPointsPlace
impl UnwindSafe for TwoPointsPlace
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