[][src]Struct buttplug::device::configuration_manager::ProtocolDefinition

pub struct ProtocolDefinition {
    pub usb: Option<Vec<USBSpecifier>>,
    pub btle: Option<BluetoothLESpecifier>,
    pub serial: Option<Vec<SerialSpecifier>>,
    pub hid: Option<Vec<HIDSpecifier>>,
    pub xinput: Option<XInputSpecifier>,
    pub defaults: Option<ProtocolAttributes>,
    pub configurations: Vec<ProtocolAttributes>,
}

Fields

usb: Option<Vec<USBSpecifier>>btle: Option<BluetoothLESpecifier>serial: Option<Vec<SerialSpecifier>>hid: Option<Vec<HIDSpecifier>>xinput: Option<XInputSpecifier>defaults: Option<ProtocolAttributes>configurations: Vec<ProtocolAttributes>

Trait Implementations

impl Clone for ProtocolDefinition[src]

impl Debug for ProtocolDefinition[src]

impl<'de> Deserialize<'de> for ProtocolDefinition[src]

impl PartialEq<DeviceSpecifier> for ProtocolDefinition[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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]