pub struct UsnTrace {
pub volume: String,
pub records: u64,
pub upserted: u64,
pub deleted: u64,
pub stat_updated: u64,
pub stat_failures: u64,
pub apply_us: u64,
}Expand description
One applied USN batch.
Fields§
§volume: StringThe volume this USN batch was applied to (e.g. “C:”).
records: u64Number of USN records in the batch.
upserted: u64Number of entries inserted or updated.
deleted: u64Number of entries removed (tombstoned).
stat_updated: u64Number of entries whose size/mtime stat was refreshed.
stat_failures: u64Number of stat refreshes that failed.
apply_us: u64Time to apply the batch to the index, in microseconds.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for UsnTrace
impl RefUnwindSafe for UsnTrace
impl Send for UsnTrace
impl Sync for UsnTrace
impl Unpin for UsnTrace
impl UnsafeUnpin for UsnTrace
impl UnwindSafe for UsnTrace
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more