pub struct PublicationMatchedStatus {
pub total_count: i32,
pub total_count_change: i32,
pub current_count: i32,
pub current_count_change: i32,
pub last_subscription_handle: InstanceHandle,
}Expand description
PUBLICATION_MATCHED_STATUS — Spec §2.2.4.1 + §2.2.2.4.2.
Writer-Seite: “Reports the discovery of a new compatible DataReader / the loss of one.”
Fields§
§total_count: i32Total cumulative count of compatible DataReaders that have been discovered so far (monoton steigend).
total_count_change: i32Change in total_count since the last read.
current_count: i32Currently matched DataReaders (kann fallen, wenn Reader weggeht).
current_count_change: i32Change in current_count since the last read (darf negativ
werden).
last_subscription_handle: InstanceHandleHandle of the last DataReader that matched the writer.
Trait Implementations§
Source§impl Clone for PublicationMatchedStatus
impl Clone for PublicationMatchedStatus
Source§fn clone(&self) -> PublicationMatchedStatus
fn clone(&self) -> PublicationMatchedStatus
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 PublicationMatchedStatus
impl Debug for PublicationMatchedStatus
Source§impl Default for PublicationMatchedStatus
impl Default for PublicationMatchedStatus
Source§fn default() -> PublicationMatchedStatus
fn default() -> PublicationMatchedStatus
Returns the “default value” for a type. Read more
Source§impl Hash for PublicationMatchedStatus
impl Hash for PublicationMatchedStatus
Source§impl PartialEq for PublicationMatchedStatus
impl PartialEq for PublicationMatchedStatus
Source§fn eq(&self, other: &PublicationMatchedStatus) -> bool
fn eq(&self, other: &PublicationMatchedStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for PublicationMatchedStatus
impl Eq for PublicationMatchedStatus
impl StructuralPartialEq for PublicationMatchedStatus
Auto Trait Implementations§
impl Freeze for PublicationMatchedStatus
impl RefUnwindSafe for PublicationMatchedStatus
impl Send for PublicationMatchedStatus
impl Sync for PublicationMatchedStatus
impl Unpin for PublicationMatchedStatus
impl UnsafeUnpin for PublicationMatchedStatus
impl UnwindSafe for PublicationMatchedStatus
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