[][src]Struct buttplug::client::device::ButtplugClientDevice

pub struct ButtplugClientDevice {
    pub name: String,
    pub allowed_messages: MessageAttributesMap,
    // some fields omitted
}

Client-usable representation of device connected to the corresponding ButtplugServer

ButtplugClientDevice instances are obtained from the ButtplugClient, and allow the user to send commands to a device connected to the server.

Fields

name: String

Name of the device

allowed_messages: MessageAttributesMap

Map of messages the device can take, along with the attributes of those messages.

Implementations

impl ButtplugClientDevice[src]

pub fn event_receiver(
    &self
) -> impl SinkExt<ButtplugClientDeviceEvent, Error = SendError> + Sync + Send
[src]

pub fn vibrate(
    &self,
    speed_cmd: VibrateCommand
) -> BoxFuture<'static, Result<(), ButtplugClientError>>
[src]

Commands device to vibrate, assuming it has the features to do so.

pub fn linear(
    &self,
    linear_cmd: LinearCommand
) -> BoxFuture<'static, Result<(), ButtplugClientError>>
[src]

Commands device to move linearly, assuming it has the features to do so.

pub fn rotate(
    &self,
    rotate_cmd: RotateCommand
) -> BoxFuture<'static, Result<(), ButtplugClientError>>
[src]

Commands device to rotate, assuming it has the features to do so.

pub fn stop(&self) -> BoxFuture<'static, Result<(), ButtplugClientError>>[src]

Commands device to stop all movement.

pub fn index(&self) -> u32[src]

Trait Implementations

impl Clone for ButtplugClientDevice[src]

impl Eq for ButtplugClientDevice[src]

impl<'_> From<(&'_ DeviceMessageInfo, Sender<ButtplugClientRequest>, BroadcastChannel<ButtplugClientDeviceEvent, UnboundedSender<ButtplugClientDeviceEvent>, UnboundedReceiver<ButtplugClientDeviceEvent>>)> for ButtplugClientDevice[src]

impl PartialEq<ButtplugClientDevice> for ButtplugClientDevice[src]

impl Send for ButtplugClientDevice[src]

impl Sync for ButtplugClientDevice[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> GetTypeId for T where
    T: Any
[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> 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.

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

impl<T> WithSubscriber for T[src]