iced/core/src/mouse/button.rs
Héctor Ramón Jiménez e819c2390b
Update winit to 0.29.4
2023-12-15 13:39:00 +01:00

21 lines
365 B
Rust

/// The button of a mouse.
#[derive(Debug, Hash, PartialEq, Eq, Clone, Copy)]
pub enum Button {
/// The left mouse button.
Left,
/// The right mouse button.
Right,
/// The middle (wheel) button.
Middle,
/// The back mouse button.
Back,
/// The forward mouse button.
Forward,
/// Some other button.
Other(u16),
}