[][src]Enum buttplug::client::ButtplugClientEvent

pub enum ButtplugClientEvent {
    ScanningFinished,
    DeviceAdded(ButtplugClientDevice),
    DeviceRemoved(DeviceMessageInfo),
    Log(LogLevelString),
    PingTimeout,
    ServerDisconnect,
}

Enum representing different events that can be emitted by a client.

These events are created by the server and sent to the client, and represent unrequested actions that the client will need to respond to, or that applications using the client may be interested in.

Variants

ScanningFinished

Emitted when a scanning session (started via a StartScanning call on ButtplugClient) has finished.

Emitted when a device has been added to the server. Includes a ButtplugClientDevice object representing the device.

DeviceRemoved(DeviceMessageInfo)

Emitted when a device has been removed from the server. Includes a ButtplugClientDevice object representing the device.

Emitted when log messages are sent from the server.

PingTimeout

Emitted when a client has not pinged the server in a sufficient amount of time.

ServerDisconnect

Emitted when a client connector detects that the server has disconnected.

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, 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>,