pub struct UserMount {
pub volume_guid: String,
pub last_mounted: Option<i64>,
pub source: Provenance,
}Expand description
One per-user volume mount: the volume GUID and the last time the user mounted it.
Fields§
§volume_guid: StringThe mounted volume’s GUID (lower-cased, braces kept).
last_mounted: Option<i64>Last-mounted time (the subkey’s last-written FILETIME), epoch seconds UTC;
None when the hive recorded no timestamp.
source: ProvenanceWhere the record was decoded from.
Trait Implementations§
impl Eq for UserMount
impl StructuralPartialEq for UserMount
Auto Trait Implementations§
impl Freeze for UserMount
impl RefUnwindSafe for UserMount
impl Send for UserMount
impl Sync for UserMount
impl Unpin for UserMount
impl UnsafeUnpin for UserMount
impl UnwindSafe for UserMount
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