pub enum PointerButton {
Primary,
Secondary,
Tertiary,
Back,
Forward,
Other(u16),
}
Expand description
A pointer button.
Variants§
Primary
The primary button, usually the left mouse button or the touch screen.
Secondary
The secondary button, usually the right mouse button.
Tertiary
The tertiary button, usually the middle mouse button.
Back
The back button.
Forward
The forward button.
Other(u16)
Other buttons.
Implementations§
Source§impl PointerButton
impl PointerButton
Sourcepub const fn from_u16(button: u16) -> PointerButton
pub const fn from_u16(button: u16) -> PointerButton
Create a new pointer button from a u16
.
Trait Implementations§
Source§impl Clone for PointerButton
impl Clone for PointerButton
Source§fn clone(&self) -> PointerButton
fn clone(&self) -> PointerButton
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 PointerButton
impl Debug for PointerButton
Source§impl Hash for PointerButton
impl Hash for PointerButton
Source§impl PartialEq for PointerButton
impl PartialEq for PointerButton
impl Copy for PointerButton
impl Eq for PointerButton
impl StructuralPartialEq for PointerButton
Auto Trait Implementations§
impl Freeze for PointerButton
impl RefUnwindSafe for PointerButton
impl Send for PointerButton
impl Sync for PointerButton
impl Unpin for PointerButton
impl UnwindSafe for PointerButton
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