pub struct ControllerHat {
pub id: u32,
pub state: HatState,
pub which: u8,
}
Expand description
Components of a controller hat move event (d-Pad).
Fields§
§id: u32
Which Controller was the button on.
state: HatState
Which button was pressed.
which: u8
Which hat on the controller was changed
Implementations§
Trait Implementations§
Source§impl Clone for ControllerHat
impl Clone for ControllerHat
Source§fn clone(&self) -> ControllerHat
fn clone(&self) -> ControllerHat
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 ControllerHat
impl Debug for ControllerHat
Source§impl<'de> Deserialize<'de> for ControllerHat
impl<'de> Deserialize<'de> for ControllerHat
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 Hash for ControllerHat
impl Hash for ControllerHat
Source§impl Ord for ControllerHat
impl Ord for ControllerHat
Source§fn cmp(&self, other: &ControllerHat) -> Ordering
fn cmp(&self, other: &ControllerHat) -> 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 ControllerHat
impl PartialEq for ControllerHat
Source§impl PartialOrd for ControllerHat
impl PartialOrd for ControllerHat
Source§impl Serialize for ControllerHat
impl Serialize for ControllerHat
impl Copy for ControllerHat
impl Eq for ControllerHat
impl StructuralPartialEq for ControllerHat
Auto Trait Implementations§
impl Freeze for ControllerHat
impl RefUnwindSafe for ControllerHat
impl Send for ControllerHat
impl Sync for ControllerHat
impl Unpin for ControllerHat
impl UnwindSafe for ControllerHat
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