pub enum MouseEventType {
Press,
Release,
Move,
Wheel,
}Expand description
事件处理相关功能 鼠标事件类型
Variants§
Trait Implementations§
Source§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
impl Eq 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 UnsafeUnpin 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