[][src]Enum buttplug::client::device::VibrateCommand

pub enum VibrateCommand {
    Speed(f64),
    SpeedVec(Vec<f64>),
    SpeedMap(HashMap<u32, f64>),
}

Convenience enum for forming VibrateCmd commands.

Allows users to easily specify speeds across different vibration features in a device. Units are in absolute speed values (0.0-1.0).

Variants

Speed(f64)

Sets all vibration features of a device to the same speed.

SpeedVec(Vec<f64>)

Sets vibration features to speed based on the index of the speed in the vec (i.e. motor 0 is set to SpeedVec[0], motor 1 is set to SpeedVec[1], etc...)

SpeedMap(HashMap<u32, f64>)

Sets vibration features indicated by index to requested speed. For instance, if the map has an entry of (1, 0.5), it will set motor 1 to a speed of 0.5.

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> GetTypeId for T where
    T: Any
[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]