pub struct ReadDeviceIdentificationResponse {
pub read_device_id_code: u8,
pub conformity_level: u8,
pub more_follows: bool,
pub next_object_id: u8,
pub objects: Vec<DeviceIdentificationObject>,
}Fields§
§read_device_id_code: u8§conformity_level: u8§more_follows: bool§next_object_id: u8§objects: Vec<DeviceIdentificationObject>Trait Implementations§
Source§impl Clone for ReadDeviceIdentificationResponse
impl Clone for ReadDeviceIdentificationResponse
Source§fn clone(&self) -> ReadDeviceIdentificationResponse
fn clone(&self) -> ReadDeviceIdentificationResponse
Returns a duplicate 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 PartialEq for ReadDeviceIdentificationResponse
impl PartialEq for ReadDeviceIdentificationResponse
Source§fn eq(&self, other: &ReadDeviceIdentificationResponse) -> bool
fn eq(&self, other: &ReadDeviceIdentificationResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ReadDeviceIdentificationResponse
impl StructuralPartialEq for ReadDeviceIdentificationResponse
Auto Trait Implementations§
impl Freeze for ReadDeviceIdentificationResponse
impl RefUnwindSafe for ReadDeviceIdentificationResponse
impl Send for ReadDeviceIdentificationResponse
impl Sync for ReadDeviceIdentificationResponse
impl Unpin for ReadDeviceIdentificationResponse
impl UnsafeUnpin for ReadDeviceIdentificationResponse
impl UnwindSafe for ReadDeviceIdentificationResponse
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