pub struct LostSamples {
pub record_id: Option<RecordId>,
pub lost_samples: u64,
}
Expand description
Some samples have been lost.
This counts only hardware generated corrupt samples that are discarded by the kernel.
Since linux-4.2
: https://github.com/torvalds/linux/commit/f38b0dbb491a6987e198aa6b428db8692a6480f8
Fields§
§record_id: Option<RecordId>
Record IDs.
lost_samples: u64
The number of lost samples.
Trait Implementations§
Source§impl Clone for LostSamples
impl Clone for LostSamples
Source§fn clone(&self) -> LostSamples
fn clone(&self) -> LostSamples
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 LostSamples
impl RefUnwindSafe for LostSamples
impl Send for LostSamples
impl Sync for LostSamples
impl Unpin for LostSamples
impl UnwindSafe for LostSamples
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