15 lines
274 B
Rust
15 lines
274 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,
|
|
|
|
/// Some other button.
|
|
Other(u8),
|
|
}
|