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