pub struct OldFormatLog {
pub base_block: BaseBlock,
pub dirty_vector: DirtyVector,
pub dirty_pages: Vec<DirtyPage>,
}Expand description
Old format transaction log file.
Fields§
§base_block: BaseBlockBase block (partial backup, first Clustering factor * 512 bytes).
dirty_vector: DirtyVectorDirty vector indicating which pages are dirty.
dirty_pages: Vec<DirtyPage>Dirty pages data.
Implementations§
Trait Implementations§
Source§impl Clone for OldFormatLog
impl Clone for OldFormatLog
Source§fn clone(&self) -> OldFormatLog
fn clone(&self) -> OldFormatLog
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 moreAuto Trait Implementations§
impl Freeze for OldFormatLog
impl RefUnwindSafe for OldFormatLog
impl Send for OldFormatLog
impl Sync for OldFormatLog
impl Unpin for OldFormatLog
impl UnsafeUnpin for OldFormatLog
impl UnwindSafe for OldFormatLog
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