pub struct BACnetDeviceObjectReference {
pub device_identifier: Option<ObjectIdentifier>,
pub object_identifier: ObjectIdentifier,
}Expand description
BACnet Device Object Reference (simplified).
References an object, optionally on a specific device. Used by access control objects (e.g., BACnetAccessRule location).
Fields§
§device_identifier: Option<ObjectIdentifier>Optional device identifier (None = local device).
object_identifier: ObjectIdentifierThe object being referenced.
Trait Implementations§
Source§impl Clone for BACnetDeviceObjectReference
impl Clone for BACnetDeviceObjectReference
Source§fn clone(&self) -> BACnetDeviceObjectReference
fn clone(&self) -> BACnetDeviceObjectReference
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 moreSource§impl Debug for BACnetDeviceObjectReference
impl Debug for BACnetDeviceObjectReference
Source§impl PartialEq for BACnetDeviceObjectReference
impl PartialEq for BACnetDeviceObjectReference
Source§fn eq(&self, other: &BACnetDeviceObjectReference) -> bool
fn eq(&self, other: &BACnetDeviceObjectReference) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for BACnetDeviceObjectReference
impl StructuralPartialEq for BACnetDeviceObjectReference
Auto Trait Implementations§
impl Freeze for BACnetDeviceObjectReference
impl RefUnwindSafe for BACnetDeviceObjectReference
impl Send for BACnetDeviceObjectReference
impl Sync for BACnetDeviceObjectReference
impl Unpin for BACnetDeviceObjectReference
impl UnsafeUnpin for BACnetDeviceObjectReference
impl UnwindSafe for BACnetDeviceObjectReference
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