pub struct PropertyReference {
pub property_identifier: PropertyIdentifier,
pub property_array_index: Option<u32>,
}Expand description
BACnetPropertyReference per Clause 21.
BACnetPropertyReference ::= SEQUENCE {
propertyIdentifier [0] BACnetPropertyIdentifier,
propertyArrayIndex [1] Unsigned OPTIONAL
}Fields§
§property_identifier: PropertyIdentifier§property_array_index: Option<u32>Implementations§
Trait Implementations§
Source§impl Clone for PropertyReference
impl Clone for PropertyReference
Source§fn clone(&self) -> PropertyReference
fn clone(&self) -> PropertyReference
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 PropertyReference
impl Debug for PropertyReference
Source§impl PartialEq for PropertyReference
impl PartialEq for PropertyReference
impl Eq for PropertyReference
impl StructuralPartialEq for PropertyReference
Auto Trait Implementations§
impl Freeze for PropertyReference
impl RefUnwindSafe for PropertyReference
impl Send for PropertyReference
impl Sync for PropertyReference
impl Unpin for PropertyReference
impl UnsafeUnpin for PropertyReference
impl UnwindSafe for PropertyReference
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