Enum piston_window::Button
pub enum Button {
Keyboard(Key),
Mouse(MouseButton),
Controller(ControllerButton),
Hat(ControllerHat),
}
Expand description
Models different kinds of buttons.
Variants
Keyboard(Key)
A keyboard button.
Mouse(MouseButton)
A mouse button.
Controller(ControllerButton)
A controller button.
Hat(ControllerHat)
A controller hat (d-Pad)
Trait Implementations
impl<'de> Deserialize<'de> for Button
impl<'de> Deserialize<'de> for Button
fn deserialize<__D>(
__deserializer: __D
) -> Result<Button, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<Button, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl From<ControllerButton> for Button
impl From<ControllerButton> for Button
fn from(btn: ControllerButton) -> Button
fn from(btn: ControllerButton) -> Button
Converts to this type from the input type.
impl From<MouseButton> for Button
impl From<MouseButton> for Button
fn from(btn: MouseButton) -> Button
fn from(btn: MouseButton) -> Button
Converts to this type from the input type.
impl Ord for Button
impl Ord for Button
1.21.0 · sourcefn 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
1.21.0 · sourcefn min(self, other: Self) -> Selfwhere
Self: Sized,
fn min(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Selfwhere
Self: Sized + PartialOrd<Self>,
Restrict a value to a certain interval. Read more
impl PartialOrd<Button> for Button
impl PartialOrd<Button> for Button
fn partial_cmp(&self, other: &Button) -> Option<Ordering>
fn partial_cmp(&self, other: &Button) -> Option<Ordering>
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Serialize for Button
impl Serialize for Button
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for Button
impl Eq for Button
impl StructuralEq for Button
impl StructuralPartialEq for Button
Auto Trait Implementations
impl RefUnwindSafe for Button
impl Send for Button
impl Sync for Button
impl Unpin for Button
impl UnwindSafe for Button
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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