Enum egui::PointerButton
source · pub enum PointerButton {
Primary = 0,
Secondary = 1,
Middle = 2,
Extra1 = 3,
Extra2 = 4,
}
Expand description
Mouse button (or similar for touch input)
Variants§
Primary = 0
The primary mouse button is usually the left one.
Secondary = 1
The secondary mouse button is usually the right one, and most often used for context menus or other optional things.
Middle = 2
The tertiary mouse button is usually the middle mouse button (e.g. clicking the scroll wheel).
Extra1 = 3
The first extra mouse button on some mice. In web typically corresponds to the Browser back button.
Extra2 = 4
The second extra mouse button on some mice. In web typically corresponds to the Browser forward button.
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 PartialEq for PointerButton
impl PartialEq for PointerButton
source§fn eq(&self, other: &PointerButton) -> bool
fn eq(&self, other: &PointerButton) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for PointerButton
impl Eq for PointerButton
impl StructuralEq for PointerButton
impl StructuralPartialEq for PointerButton
Auto Trait Implementations§
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