[−][src]Enum amethyst_input::ControllerEvent
Controller events generated by the SDL events system.
Variants
ControllerAxisMovedMovement event on a controller axis.
Corresponds to SDL_CONTROLLERAXISMOTION.
Fields of ControllerAxisMoved
which: u32The joystick instance id.
axis: ControllerAxisThe controller axis.
value: f32The axis value (range: -32768 to 32767).
ControllerButtonPressedButton press event on a controller.
Corresponds to SDL_CONTROLLERBUTTONDOWN.
Fields of ControllerButtonPressed
ControllerButtonReleasedButton press event on a controller.
Corresponds to SDL_CONTROLLERBUTTONUP.
Fields of ControllerButtonReleased
ControllerDisconnectedController disconnect event.
Corresponds to SDL_CONTROLLERDEVICEREMOVED.
Fields of ControllerDisconnected
which: u32The joystick device index for the SDL_CONTROLLERDEVICEADDED event or instance id for
the SDL_CONTROLLERDEVICEREMOVED or SDL_CONTROLLERDEVICEREMAPPED event
ControllerConnectedController connected event.
Corresponds to SDL_CONTROLLERDEVICEADDED.
Fields of ControllerConnected
which: u32The joystick device index for the SDL_CONTROLLERDEVICEADDED event or instance id for
the SDL_CONTROLLERDEVICEREMOVED or SDL_CONTROLLERDEVICEREMAPPED event
Trait Implementations
impl Copy for ControllerEvent[src]
impl Clone for ControllerEvent[src]
fn clone(&self) -> ControllerEvent[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl PartialEq<ControllerEvent> for ControllerEvent[src]
fn eq(&self, other: &ControllerEvent) -> bool[src]
fn ne(&self, other: &ControllerEvent) -> bool[src]
impl<'a, T> Into<InputEvent<T>> for &'a ControllerEvent where
T: BindingTypes, [src]
T: BindingTypes,
fn into(self) -> InputEvent<T>[src]
impl Debug for ControllerEvent[src]
impl<'de> Deserialize<'de> for ControllerEvent[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Serialize for ControllerEvent[src]
Auto Trait Implementations
impl Unpin for ControllerEvent
impl Sync for ControllerEvent
impl Send for ControllerEvent
impl UnwindSafe for ControllerEvent
impl RefUnwindSafe for ControllerEvent
Blanket Implementations
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> SetParameter for T[src]
fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
T: Parameter<Self>, [src]
T: Parameter<Self>,
Sets value as a parameter of self.
impl<T> DeserializeOwned for T where
T: Deserialize<'de>, [src]
T: Deserialize<'de>,
impl<T> Scalar for T where
T: Copy + PartialEq<T> + Any + Debug, [src]
T: Copy + PartialEq<T> + Any + Debug,
impl<T> Same<T> for T[src]
type Output = T
Should always be Self
impl<SS, SP> SupersetOf<SS> for SP where
SS: SubsetOf<SP>, [src]
SS: SubsetOf<SP>,
fn to_subset(&self) -> Option<SS>[src]
fn is_in_subset(&self) -> bool[src]
unsafe fn to_subset_unchecked(&self) -> SS[src]
fn from_subset(element: &SS) -> SP[src]
impl<T> Resource for T where
T: Any + Send + Sync, [src]
T: Any + Send + Sync,
impl<T> Any for T where
T: Any, [src]
T: Any,
fn get_type_id(&self) -> TypeId[src]
impl<T> Event for T where
T: Send + Sync + 'static, [src]
T: Send + Sync + 'static,