pub struct Lost {
pub id: u64,
pub lost: u64,
}Expand description
Lost records indicate when events are dropped by the kernel.
This will happen when the sampler ring buffer fills up and there is no space left for events to be inserted.
Fields§
§id: u64The unique event ID for the samples that were lost.
lost: u64The number of events that were lost.
Trait Implementations§
impl Copy for Lost
Auto Trait Implementations§
impl Freeze for Lost
impl RefUnwindSafe for Lost
impl Send for Lost
impl Sync for Lost
impl Unpin for Lost
impl UnwindSafe for Lost
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