pub enum RecordSource {
Allocated,
Carved,
Ghost,
}Expand description
Where a resolved record originated.
Variants§
Allocated
From the live (allocated) USN journal.
Carved
Carved from unallocated disk space.
Ghost
Ghost record inferred from MFT/journal correlation.
Implementations§
Trait Implementations§
Source§impl Clone for RecordSource
impl Clone for RecordSource
Source§fn clone(&self) -> RecordSource
fn clone(&self) -> RecordSource
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 RecordSource
Source§impl Debug for RecordSource
impl Debug for RecordSource
impl Eq for RecordSource
Source§impl PartialEq for RecordSource
impl PartialEq for RecordSource
Source§fn eq(&self, other: &RecordSource) -> bool
fn eq(&self, other: &RecordSource) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for RecordSource
Auto Trait Implementations§
impl Freeze for RecordSource
impl RefUnwindSafe for RecordSource
impl Send for RecordSource
impl Sync for RecordSource
impl Unpin for RecordSource
impl UnsafeUnpin for RecordSource
impl UnwindSafe for RecordSource
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