pub enum Confidence {
Authoritative,
Inferred,
}Expand description
How much trust a timestamp carries.
Variants§
Authoritative
Directly recorded by the source as the stated event (e.g. the setupapi section-header install time → first-seen).
Inferred
Derived/undocumented — the value’s meaning is inferred, not stated by the
source (e.g. the registry 0066/0067 Last-Arrival/Last-Removal
device-property FILETIMEs, which are undocumented).
Trait Implementations§
Source§impl Clone for Confidence
impl Clone for Confidence
Source§fn clone(&self) -> Confidence
fn clone(&self) -> Confidence
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 moreimpl Copy for Confidence
Source§impl Debug for Confidence
impl Debug for Confidence
impl Eq for Confidence
Source§impl Hash for Confidence
impl Hash for Confidence
Source§impl PartialEq for Confidence
impl PartialEq for Confidence
Source§fn eq(&self, other: &Confidence) -> bool
fn eq(&self, other: &Confidence) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for Confidence
Auto Trait Implementations§
impl Freeze for Confidence
impl RefUnwindSafe for Confidence
impl Send for Confidence
impl Sync for Confidence
impl Unpin for Confidence
impl UnsafeUnpin for Confidence
impl UnwindSafe for Confidence
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