Struct vcs_classic_hid::force_feedback::FfReport[][src]

#[repr(transparent)]pub struct FfReport(_);

A force feedback report.

Implementations

impl FfReport[src]

pub const fn new() -> Self[src]

Create a new force feedback report which disables any ongoing force feedback.

pub const fn new_with_params(
    intensity: u8,
    up_time: u8,
    down_time: u8,
    times: u8
) -> Self
[src]

Create a new force feedback report with the given parameters.

  • intensity: how intense is the force feedback
  • up_time: the duration of each vibration
  • down_time: the time off between each vibration
  • times: the number of times to vibrate

pub fn send<D>(&self, device: D) -> Result<(), D::Error> where
    D: Device
[src]

Send this report as an HID message to the given device.

Safety: although not memory unsafe, the operation must be done on a readily available device handle for the Atari Classic Controller. The effects on any other device are unknown and potentially dangerous.

Trait Implementations

impl AsRef<[u8]> for FfReport[src]

impl Clone for FfReport[src]

impl Copy for FfReport[src]

impl Debug for FfReport[src]

impl Default for FfReport[src]

impl Eq for FfReport[src]

impl Hash for FfReport[src]

impl PartialEq<FfReport> for FfReport[src]

impl StructuralEq for FfReport[src]

impl StructuralPartialEq for FfReport[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.