#[repr(C)]pub struct CountStatus {
pub total_count: u32,
pub total_count_change: u32,
}Expand description
Deadline / message-lost payload. Used for
RequestedDeadlineMissed, LivelinessLost,
OfferedDeadlineMissed, MessageLost — same shape.
Fields§
§total_count: u32Cumulative count over the entity’s lifetime.
total_count_change: u32Change since the last callback fire.
Trait Implementations§
Source§impl Clone for CountStatus
impl Clone for CountStatus
Source§fn clone(&self) -> CountStatus
fn clone(&self) -> CountStatus
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 CountStatus
impl Debug for CountStatus
Source§impl Default for CountStatus
impl Default for CountStatus
Source§fn default() -> CountStatus
fn default() -> CountStatus
Returns the “default value” for a type. Read more
Source§impl PartialEq for CountStatus
impl PartialEq for CountStatus
impl Copy for CountStatus
impl Eq for CountStatus
impl StructuralPartialEq for CountStatus
Auto Trait Implementations§
impl Freeze for CountStatus
impl RefUnwindSafe for CountStatus
impl Send for CountStatus
impl Sync for CountStatus
impl Unpin for CountStatus
impl UnsafeUnpin for CountStatus
impl UnwindSafe for CountStatus
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