pub enum MouseTracking {
Button,
Drag,
Any,
}Expand description
Mouse tracking mode.
Variants§
Trait Implementations§
Source§impl Clone for MouseTracking
impl Clone for MouseTracking
Source§fn clone(&self) -> MouseTracking
fn clone(&self) -> MouseTracking
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for MouseTracking
Source§impl Debug for MouseTracking
impl Debug for MouseTracking
impl Eq for MouseTracking
Source§impl PartialEq for MouseTracking
impl PartialEq for MouseTracking
Source§fn eq(&self, other: &MouseTracking) -> bool
fn eq(&self, other: &MouseTracking) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MouseTracking
Auto Trait Implementations§
impl Freeze for MouseTracking
impl RefUnwindSafe for MouseTracking
impl Send for MouseTracking
impl Sync for MouseTracking
impl Unpin for MouseTracking
impl UnsafeUnpin for MouseTracking
impl UnwindSafe for MouseTracking
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