pub enum LogFileRecordSource {
RedoData,
UndoData,
PageSlack,
}Expand description
Where the USN record was found within the $LogFile.
Variants§
RedoData
Found in the redo data area of a log record.
UndoData
Found in the undo data area of a log record.
PageSlack
Found in slack space at the end of an RCRD page.
Trait Implementations§
Source§impl Clone for LogFileRecordSource
impl Clone for LogFileRecordSource
Source§fn clone(&self) -> LogFileRecordSource
fn clone(&self) -> LogFileRecordSource
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 moreSource§impl Debug for LogFileRecordSource
impl Debug for LogFileRecordSource
impl Eq for LogFileRecordSource
Source§impl PartialEq for LogFileRecordSource
impl PartialEq for LogFileRecordSource
Source§fn eq(&self, other: &LogFileRecordSource) -> bool
fn eq(&self, other: &LogFileRecordSource) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for LogFileRecordSource
Auto Trait Implementations§
impl Freeze for LogFileRecordSource
impl RefUnwindSafe for LogFileRecordSource
impl Send for LogFileRecordSource
impl Sync for LogFileRecordSource
impl Unpin for LogFileRecordSource
impl UnsafeUnpin for LogFileRecordSource
impl UnwindSafe for LogFileRecordSource
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