pub struct SubscriptionMatchedStatus {
pub total_count: i32,
pub total_count_change: i32,
pub current_count: i32,
pub current_count_change: i32,
pub last_publication_handle: InstanceHandle,
}Expand description
SUBSCRIPTION_MATCHED_STATUS — Spec §2.2.4.1 + §2.2.2.5.6.
Reader side: mirrors PublicationMatched. Fields run in parallel.
Fields§
§total_count: i32Total cumulative count of compatible DataWriters discovered.
total_count_change: i32Change in total_count since last read.
current_count: i32Currently matched DataWriters.
current_count_change: i32Change in current_count since last read.
last_publication_handle: InstanceHandleHandle of the last DataWriter that matched.
Trait Implementations§
Source§impl Clone for SubscriptionMatchedStatus
impl Clone for SubscriptionMatchedStatus
Source§fn clone(&self) -> SubscriptionMatchedStatus
fn clone(&self) -> SubscriptionMatchedStatus
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 moreimpl Copy for SubscriptionMatchedStatus
Source§impl Debug for SubscriptionMatchedStatus
impl Debug for SubscriptionMatchedStatus
Source§impl Default for SubscriptionMatchedStatus
impl Default for SubscriptionMatchedStatus
Source§fn default() -> SubscriptionMatchedStatus
fn default() -> SubscriptionMatchedStatus
Returns the “default value” for a type. Read more
impl Eq for SubscriptionMatchedStatus
Source§impl Hash for SubscriptionMatchedStatus
impl Hash for SubscriptionMatchedStatus
impl StructuralPartialEq for SubscriptionMatchedStatus
Auto Trait Implementations§
impl Freeze for SubscriptionMatchedStatus
impl RefUnwindSafe for SubscriptionMatchedStatus
impl Send for SubscriptionMatchedStatus
impl Sync for SubscriptionMatchedStatus
impl Unpin for SubscriptionMatchedStatus
impl UnsafeUnpin for SubscriptionMatchedStatus
impl UnwindSafe for SubscriptionMatchedStatus
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