pub struct SiblingStat {
pub count: u64,
pub id: Option<u64>,
pub lost_records: Option<u64>,
}
Expand description
Sibling event statistics.
Fields§
§count: u64
Event count.
id: Option<u64>
Event ID.
lost_records: Option<u64>
The number of lost records.
If the sampler ring-buffer has no more space to hold the new records or the ring-buffer output is paused, the records are considered lost.
Since linux-6.0
: https://github.com/torvalds/linux/commit/119a784c81270eb88e573174ed2209225d646656
Trait Implementations§
Source§impl Clone for SiblingStat
impl Clone for SiblingStat
Source§fn clone(&self) -> SiblingStat
fn clone(&self) -> SiblingStat
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 moreAuto Trait Implementations§
impl Freeze for SiblingStat
impl RefUnwindSafe for SiblingStat
impl Send for SiblingStat
impl Sync for SiblingStat
impl Unpin for SiblingStat
impl UnwindSafe for SiblingStat
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