pub enum UIMouseEventAction {
Unknown,
Press,
Release,
Move,
}Variants§
Implementations§
Source§impl UIMouseEventAction
impl UIMouseEventAction
pub fn try_from_raw(attr: UI_MOUSE_EVENT_ACTION) -> Option<Self>
Trait Implementations§
Source§impl Clone for UIMouseEventAction
impl Clone for UIMouseEventAction
Source§fn clone(&self) -> UIMouseEventAction
fn clone(&self) -> UIMouseEventAction
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 moreSource§impl Debug for UIMouseEventAction
impl Debug for UIMouseEventAction
Source§impl From<UIMouseEventAction> for UI_MOUSE_EVENT_ACTION
impl From<UIMouseEventAction> for UI_MOUSE_EVENT_ACTION
Source§fn from(attr: UIMouseEventAction) -> Self
fn from(attr: UIMouseEventAction) -> Self
Converts to this type from the input type.
Source§impl From<u32> for UIMouseEventAction
impl From<u32> for UIMouseEventAction
Source§fn from(attr: UI_MOUSE_EVENT_ACTION) -> Self
fn from(attr: UI_MOUSE_EVENT_ACTION) -> Self
Converts to this type from the input type.
Source§impl PartialEq for UIMouseEventAction
impl PartialEq for UIMouseEventAction
Source§fn eq(&self, other: &UIMouseEventAction) -> bool
fn eq(&self, other: &UIMouseEventAction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for UIMouseEventAction
impl Eq for UIMouseEventAction
impl StructuralPartialEq for UIMouseEventAction
Auto Trait Implementations§
impl Freeze for UIMouseEventAction
impl RefUnwindSafe for UIMouseEventAction
impl Send for UIMouseEventAction
impl Sync for UIMouseEventAction
impl Unpin for UIMouseEventAction
impl UnsafeUnpin for UIMouseEventAction
impl UnwindSafe for UIMouseEventAction
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