pub enum MouseEventType {
Move,
LeftDown,
LeftUp,
RightDown,
RightUp,
MiddleDown,
MiddleUp,
Scroll,
}
Variants§
Trait Implementations§
Source§impl Clone for MouseEventType
impl Clone for MouseEventType
Source§fn clone(&self) -> MouseEventType
fn clone(&self) -> MouseEventType
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 MouseEventType
impl Debug for MouseEventType
Source§impl<'de> Deserialize<'de> for MouseEventType
impl<'de> Deserialize<'de> for MouseEventType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for MouseEventType
impl PartialEq for MouseEventType
Source§impl Serialize for MouseEventType
impl Serialize for MouseEventType
Source§impl TryFrom<i32> for MouseEventType
impl TryFrom<i32> for MouseEventType
impl Copy for MouseEventType
impl StructuralPartialEq for MouseEventType
Auto Trait Implementations§
impl Freeze for MouseEventType
impl RefUnwindSafe for MouseEventType
impl Send for MouseEventType
impl Sync for MouseEventType
impl Unpin for MouseEventType
impl UnwindSafe for MouseEventType
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