pub struct DeviceIdentification {
pub read_device_id_code: u8,
pub conformity_level: u8,
pub more_follows: bool,
pub next_object_id: u8,
pub objects: Vec<DeviceObject>,
}Fields§
§read_device_id_code: u8§conformity_level: u8§more_follows: bool§next_object_id: u8§objects: Vec<DeviceObject>Trait Implementations§
Source§impl Clone for DeviceIdentification
impl Clone for DeviceIdentification
Source§fn clone(&self) -> DeviceIdentification
fn clone(&self) -> DeviceIdentification
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for DeviceIdentification
impl RefUnwindSafe for DeviceIdentification
impl Send for DeviceIdentification
impl Sync for DeviceIdentification
impl Unpin for DeviceIdentification
impl UnsafeUnpin for DeviceIdentification
impl UnwindSafe for DeviceIdentification
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more