pub enum DeviceAttributes {
Request,
Identify(u32),
}
Expand description
Valid parameter values to the function DA
.
Variants§
Request
Request identifying device attributes from a device.
Identify(u32)
Device attributes identification code.
Trait Implementations§
source§impl Clone for DeviceAttributes
impl Clone for DeviceAttributes
source§fn clone(&self) -> DeviceAttributes
fn clone(&self) -> DeviceAttributes
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for DeviceAttributes
impl Default for DeviceAttributes
source§fn default() -> DeviceAttributes
fn default() -> DeviceAttributes
Returns the “default value” for a type. Read more
source§impl PartialEq<DeviceAttributes> for DeviceAttributes
impl PartialEq<DeviceAttributes> for DeviceAttributes
source§fn eq(&self, other: &DeviceAttributes) -> bool
fn eq(&self, other: &DeviceAttributes) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.