pub struct LogFileSummary {
pub restart_areas: Vec<RestartArea>,
pub record_page_count: usize,
pub has_gaps: bool,
pub highest_lsn: u64,
}Expand description
Summary of $LogFile analysis.
Fields§
§restart_areas: Vec<RestartArea>§record_page_count: usize§has_gaps: bool§highest_lsn: u64Trait Implementations§
Source§impl Clone for LogFileSummary
impl Clone for LogFileSummary
Source§fn clone(&self) -> LogFileSummary
fn clone(&self) -> LogFileSummary
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 LogFileSummary
impl RefUnwindSafe for LogFileSummary
impl Send for LogFileSummary
impl Sync for LogFileSummary
impl Unpin for LogFileSummary
impl UnsafeUnpin for LogFileSummary
impl UnwindSafe for LogFileSummary
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