pub struct UndoSegmentHeader {
pub state: UndoState,
pub last_log: u16,
}Expand description
Parsed undo segment header (only on first page of undo segment).
Fields§
§state: UndoStateState of the undo segment.
last_log: u16Offset of the last undo log header on the segment.
Implementations§
Trait Implementations§
Source§impl Clone for UndoSegmentHeader
impl Clone for UndoSegmentHeader
Source§fn clone(&self) -> UndoSegmentHeader
fn clone(&self) -> UndoSegmentHeader
Returns a duplicate of the value. Read more
1.0.0 · 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 UndoSegmentHeader
impl Debug for UndoSegmentHeader
Auto Trait Implementations§
impl Freeze for UndoSegmentHeader
impl RefUnwindSafe for UndoSegmentHeader
impl Send for UndoSegmentHeader
impl Sync for UndoSegmentHeader
impl Unpin for UndoSegmentHeader
impl UnwindSafe for UndoSegmentHeader
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