Enum pix_engine::event::Mouse
source · [−]#[non_exhaustive]
pub enum Mouse {
Left,
Middle,
Right,
Unsupported,
}Expand description
Mouse Button type.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Left
Left mouse button.
Middle
Middle mouse wheel/button.
Right
Right mouse button.
Unsupported
An unknown/unsupported mouse button.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Mouse
impl<'de> Deserialize<'de> for Mouse
sourcefn 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
impl Copy for Mouse
impl Eq for Mouse
impl StructuralEq for Mouse
impl StructuralPartialEq for Mouse
Auto Trait Implementations
impl RefUnwindSafe for Mouse
impl Send for Mouse
impl Sync for Mouse
impl Unpin for Mouse
impl UnwindSafe for Mouse
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more