pub struct ReadPropertyACK {
pub object_identifier: ObjectIdentifier,
pub property_identifier: PropertyIdentifier,
pub property_array_index: Option<u32>,
pub property_value: Vec<u8>,
}Expand description
ReadProperty-ACK service parameters.
ReadProperty-ACK ::= SEQUENCE {
objectIdentifier [0] BACnetObjectIdentifier,
propertyIdentifier [1] BACnetPropertyIdentifier,
propertyArrayIndex [2] Unsigned OPTIONAL,
propertyValue [3] ABSTRACT-SYNTAX.&TYPE
}The property_value field contains raw application-tagged bytes.
Fields§
§object_identifier: ObjectIdentifier§property_identifier: PropertyIdentifier§property_array_index: Option<u32>§property_value: Vec<u8>Implementations§
Trait Implementations§
Source§impl Clone for ReadPropertyACK
impl Clone for ReadPropertyACK
Source§fn clone(&self) -> ReadPropertyACK
fn clone(&self) -> ReadPropertyACK
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 ReadPropertyACK
impl Debug for ReadPropertyACK
Source§impl PartialEq for ReadPropertyACK
impl PartialEq for ReadPropertyACK
impl Eq for ReadPropertyACK
impl StructuralPartialEq for ReadPropertyACK
Auto Trait Implementations§
impl Freeze for ReadPropertyACK
impl RefUnwindSafe for ReadPropertyACK
impl Send for ReadPropertyACK
impl Sync for ReadPropertyACK
impl Unpin for ReadPropertyACK
impl UnsafeUnpin for ReadPropertyACK
impl UnwindSafe for ReadPropertyACK
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