#[repr(u8)]pub enum MouseButton {
Left = 0,
Right = 1,
Middle = 2,
Side1 = 3,
Side2 = 4,
}Variants§
Trait Implementations§
Source§impl Clone for MouseButton
impl Clone for MouseButton
Source§fn clone(&self) -> MouseButton
fn clone(&self) -> MouseButton
Returns a duplicate 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 MouseButton
impl Debug for MouseButton
Source§impl<'de> Deserialize<'de> for MouseButton
impl<'de> Deserialize<'de> for MouseButton
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Into<usize> for MouseButton
impl Into<usize> for MouseButton
Source§impl Ord for MouseButton
impl Ord for MouseButton
Source§fn cmp(&self, other: &MouseButton) -> Ordering
fn cmp(&self, other: &MouseButton) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MouseButton
impl PartialEq for MouseButton
Source§impl PartialOrd for MouseButton
impl PartialOrd for MouseButton
Source§impl Serialize for MouseButton
impl Serialize for MouseButton
Source§impl TryFrom<u8> for MouseButton
impl TryFrom<u8> for MouseButton
Source§type Error = TryFromPrimitiveError<MouseButton>
type Error = TryFromPrimitiveError<MouseButton>
The type returned in the event of a conversion error.
Source§impl TryFromPrimitive for MouseButton
impl TryFromPrimitive for MouseButton
const NAME: &'static str = "MouseButton"
type Primitive = u8
type Error = TryFromPrimitiveError<MouseButton>
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
impl Copy for MouseButton
impl Eq for MouseButton
impl StructuralPartialEq for MouseButton
Auto Trait Implementations§
impl Freeze for MouseButton
impl RefUnwindSafe for MouseButton
impl Send for MouseButton
impl Sync for MouseButton
impl Unpin for MouseButton
impl UnwindSafe for MouseButton
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