#[repr(C)]pub struct HddsSubscriptionMatchedStatus {
pub total_count: u32,
pub total_count_change: i32,
pub current_count: u32,
pub current_count_change: i32,
}Expand description
Subscription matched status (C-compatible mirror of Rust SubscriptionMatchedStatus).
Reports the number of publications matched with this reader.
Fields§
§total_count: u32Total cumulative count of matched publications.
total_count_change: i32Change in total_count since last callback.
current_count: u32Current number of matched publications.
current_count_change: i32Change in current_count since last callback.
Trait Implementations§
Source§impl Clone for HddsSubscriptionMatchedStatus
impl Clone for HddsSubscriptionMatchedStatus
Source§fn clone(&self) -> HddsSubscriptionMatchedStatus
fn clone(&self) -> HddsSubscriptionMatchedStatus
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 Default for HddsSubscriptionMatchedStatus
impl Default for HddsSubscriptionMatchedStatus
Source§fn default() -> HddsSubscriptionMatchedStatus
fn default() -> HddsSubscriptionMatchedStatus
Returns the “default value” for a type. Read more
impl Copy for HddsSubscriptionMatchedStatus
Auto Trait Implementations§
impl Freeze for HddsSubscriptionMatchedStatus
impl RefUnwindSafe for HddsSubscriptionMatchedStatus
impl Send for HddsSubscriptionMatchedStatus
impl Sync for HddsSubscriptionMatchedStatus
impl Unpin for HddsSubscriptionMatchedStatus
impl UnsafeUnpin for HddsSubscriptionMatchedStatus
impl UnwindSafe for HddsSubscriptionMatchedStatus
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