pub struct RecipientProcess {
pub device: Option<ObjectIdentifier>,
pub process_identifier: u32,
}Expand description
BACnetRecipientProcess — identifies a notification recipient.
Simplified: only the device choice of BACnetRecipient is supported,
plus the process identifier.
Fields§
§device: Option<ObjectIdentifier>Device object identifier (from BACnetRecipient CHOICE [0] device).
process_identifier: u32Process identifier.
Trait Implementations§
Source§impl Clone for RecipientProcess
impl Clone for RecipientProcess
Source§fn clone(&self) -> RecipientProcess
fn clone(&self) -> RecipientProcess
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 RecipientProcess
impl Debug for RecipientProcess
Source§impl PartialEq for RecipientProcess
impl PartialEq for RecipientProcess
Source§fn eq(&self, other: &RecipientProcess) -> bool
fn eq(&self, other: &RecipientProcess) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for RecipientProcess
impl StructuralPartialEq for RecipientProcess
Auto Trait Implementations§
impl Freeze for RecipientProcess
impl RefUnwindSafe for RecipientProcess
impl Send for RecipientProcess
impl Sync for RecipientProcess
impl Unpin for RecipientProcess
impl UnsafeUnpin for RecipientProcess
impl UnwindSafe for RecipientProcess
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