Enum comfy_wgpu::egui::PointerButton
source · pub enum PointerButton {
Primary,
Secondary,
Middle,
Extra1,
Extra2,
}Expand description
Mouse button (or similar for touch input)
Variants§
Primary
The primary mouse button is usually the left one.
Secondary
The secondary mouse button is usually the right one, and most often used for context menus or other optional things.
Middle
The tertiary mouse button is usually the middle mouse button (e.g. clicking the scroll wheel).
Extra1
The first extra mouse button on some mice. In web typically corresponds to the Browser back button.
Extra2
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<PointerButton> for PointerButton
impl PartialEq<PointerButton> 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
§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.