pub struct MonitoredItemHandle {
pub subscription_id: u32,
pub monitored_item_id: u32,
}Expand description
Unique identifier for a monitored item on the server.
Fields§
§subscription_id: u32Subscription this monitored item belongs to.
monitored_item_id: u32ID of this monitored item.
Trait Implementations§
Source§impl Clone for MonitoredItemHandle
impl Clone for MonitoredItemHandle
Source§fn clone(&self) -> MonitoredItemHandle
fn clone(&self) -> MonitoredItemHandle
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 MonitoredItemHandle
impl Debug for MonitoredItemHandle
Source§impl Hash for MonitoredItemHandle
impl Hash for MonitoredItemHandle
Source§impl PartialEq for MonitoredItemHandle
impl PartialEq for MonitoredItemHandle
impl Copy for MonitoredItemHandle
impl Eq for MonitoredItemHandle
impl StructuralPartialEq for MonitoredItemHandle
Auto Trait Implementations§
impl Freeze for MonitoredItemHandle
impl RefUnwindSafe for MonitoredItemHandle
impl Send for MonitoredItemHandle
impl Sync for MonitoredItemHandle
impl Unpin for MonitoredItemHandle
impl UnsafeUnpin for MonitoredItemHandle
impl UnwindSafe for MonitoredItemHandle
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.