pub enum NativeMouseButton {
Left,
Middle,
Right,
Other,
}Variants§
Trait Implementations§
Source§impl Clone for NativeMouseButton
impl Clone for NativeMouseButton
Source§fn clone(&self) -> NativeMouseButton
fn clone(&self) -> NativeMouseButton
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 NativeMouseButton
Source§impl Debug for NativeMouseButton
impl Debug for NativeMouseButton
impl Eq for NativeMouseButton
Source§impl PartialEq for NativeMouseButton
impl PartialEq for NativeMouseButton
Source§fn eq(&self, other: &NativeMouseButton) -> bool
fn eq(&self, other: &NativeMouseButton) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NativeMouseButton
Auto Trait Implementations§
impl Freeze for NativeMouseButton
impl RefUnwindSafe for NativeMouseButton
impl Send for NativeMouseButton
impl Sync for NativeMouseButton
impl Unpin for NativeMouseButton
impl UnsafeUnpin for NativeMouseButton
impl UnwindSafe for NativeMouseButton
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