pub struct LivelinessLostStatus {
pub total_count: i32,
pub total_count_change: i32,
}Expand description
LIVELINESS_LOST_STATUS — Spec §2.2.4.1 + §2.2.2.4.2.
Counter, wie oft der DataWriter aus Sicht des LIVELINESS-QoS-Vertrags als “not alive” deklariert worden ist (Writer-Seite).
Fields§
§total_count: i32Total cumulative count of times the writer was declared not-alive.
total_count_change: i32Increment since last read.
Trait Implementations§
Source§impl Clone for LivelinessLostStatus
impl Clone for LivelinessLostStatus
Source§fn clone(&self) -> LivelinessLostStatus
fn clone(&self) -> LivelinessLostStatus
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 LivelinessLostStatus
impl Debug for LivelinessLostStatus
Source§impl Default for LivelinessLostStatus
impl Default for LivelinessLostStatus
Source§fn default() -> LivelinessLostStatus
fn default() -> LivelinessLostStatus
Returns the “default value” for a type. Read more
Source§impl Hash for LivelinessLostStatus
impl Hash for LivelinessLostStatus
Source§impl PartialEq for LivelinessLostStatus
impl PartialEq for LivelinessLostStatus
Source§fn eq(&self, other: &LivelinessLostStatus) -> bool
fn eq(&self, other: &LivelinessLostStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for LivelinessLostStatus
impl Eq for LivelinessLostStatus
impl StructuralPartialEq for LivelinessLostStatus
Auto Trait Implementations§
impl Freeze for LivelinessLostStatus
impl RefUnwindSafe for LivelinessLostStatus
impl Send for LivelinessLostStatus
impl Sync for LivelinessLostStatus
impl Unpin for LivelinessLostStatus
impl UnsafeUnpin for LivelinessLostStatus
impl UnwindSafe for LivelinessLostStatus
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