pub struct DeviceIdObject {
pub object_id: ObjectId,
pub value: Vec<u8, MAX_PDU_DATA_LEN>,
}Expand description
Represents an object ID.
Fields§
§object_id: ObjectIdThe ID of the object.
value: Vec<u8, MAX_PDU_DATA_LEN>The value of the object.
Trait Implementations§
Source§impl Clone for DeviceIdObject
impl Clone for DeviceIdObject
Source§fn clone(&self) -> DeviceIdObject
fn clone(&self) -> DeviceIdObject
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 Debug for DeviceIdObject
impl Debug for DeviceIdObject
Source§impl PartialEq for DeviceIdObject
impl PartialEq for DeviceIdObject
impl StructuralPartialEq for DeviceIdObject
Auto Trait Implementations§
impl Freeze for DeviceIdObject
impl RefUnwindSafe for DeviceIdObject
impl Send for DeviceIdObject
impl Sync for DeviceIdObject
impl Unpin for DeviceIdObject
impl UnsafeUnpin for DeviceIdObject
impl UnwindSafe for DeviceIdObject
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