pub struct ControllerButton {
pub id: u32,
pub button: u8,
}
Expand description
Components of a controller button event. Not guaranteed consistent across backends.
Fields§
§id: u32
Which controller was the button on.
Which button was pressed.
Implementations§
Trait Implementations§
Source§impl Clone for ControllerButton
impl Clone for ControllerButton
Source§fn clone(&self) -> ControllerButton
fn clone(&self) -> ControllerButton
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 ControllerButton
impl Debug for ControllerButton
Source§impl<'de> Deserialize<'de> for ControllerButton
impl<'de> Deserialize<'de> for ControllerButton
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 From<ControllerButton> for Button
impl From<ControllerButton> for Button
Source§fn from(btn: ControllerButton) -> Self
fn from(btn: ControllerButton) -> Self
Converts to this type from the input type.
Source§impl Hash for ControllerButton
impl Hash for ControllerButton
Source§impl Ord for ControllerButton
impl Ord for ControllerButton
Source§fn cmp(&self, other: &ControllerButton) -> Ordering
fn cmp(&self, other: &ControllerButton) -> 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 ControllerButton
impl PartialEq for ControllerButton
Source§impl PartialOrd for ControllerButton
impl PartialOrd for ControllerButton
Source§impl Serialize for ControllerButton
impl Serialize for ControllerButton
impl Copy for ControllerButton
impl Eq for ControllerButton
impl StructuralPartialEq for ControllerButton
Auto Trait Implementations§
impl Freeze for ControllerButton
impl RefUnwindSafe for ControllerButton
impl Send for ControllerButton
impl Sync for ControllerButton
impl Unpin for ControllerButton
impl UnwindSafe for ControllerButton
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