pub struct SampleLostStatus {
pub total_count: i32,
pub total_count_change: i32,
}Expand description
SAMPLE_LOST_STATUS — Spec §2.2.4.1 + §2.2.2.5.6.
“All samples that have been lost (never received) by the DataReader.”
Fields§
§total_count: i32Total cumulative count of all lost samples.
total_count_change: i32Increment since last read.
Trait Implementations§
Source§impl Clone for SampleLostStatus
impl Clone for SampleLostStatus
Source§fn clone(&self) -> SampleLostStatus
fn clone(&self) -> SampleLostStatus
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 SampleLostStatus
impl Debug for SampleLostStatus
Source§impl Default for SampleLostStatus
impl Default for SampleLostStatus
Source§fn default() -> SampleLostStatus
fn default() -> SampleLostStatus
Returns the “default value” for a type. Read more
Source§impl Hash for SampleLostStatus
impl Hash for SampleLostStatus
Source§impl PartialEq for SampleLostStatus
impl PartialEq for SampleLostStatus
Source§fn eq(&self, other: &SampleLostStatus) -> bool
fn eq(&self, other: &SampleLostStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for SampleLostStatus
impl Eq for SampleLostStatus
impl StructuralPartialEq for SampleLostStatus
Auto Trait Implementations§
impl Freeze for SampleLostStatus
impl RefUnwindSafe for SampleLostStatus
impl Send for SampleLostStatus
impl Sync for SampleLostStatus
impl Unpin for SampleLostStatus
impl UnsafeUnpin for SampleLostStatus
impl UnwindSafe for SampleLostStatus
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