pub struct ChainFileInfo {
pub file: String,
pub space_id: u32,
pub max_lsn: u64,
pub min_lsn: u64,
pub total_pages: u64,
}Expand description
Information extracted from a tablespace file for chain ordering.
Fields§
§file: StringPath to the file.
space_id: u32Space ID from page 0.
max_lsn: u64Maximum LSN found across all pages.
min_lsn: u64Minimum non-zero LSN found.
total_pages: u64Total pages in the file.
Trait Implementations§
Source§impl Clone for ChainFileInfo
impl Clone for ChainFileInfo
Source§fn clone(&self) -> ChainFileInfo
fn clone(&self) -> ChainFileInfo
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 ChainFileInfo
impl Debug for ChainFileInfo
Auto Trait Implementations§
impl Freeze for ChainFileInfo
impl RefUnwindSafe for ChainFileInfo
impl Send for ChainFileInfo
impl Sync for ChainFileInfo
impl Unpin for ChainFileInfo
impl UnsafeUnpin for ChainFileInfo
impl UnwindSafe for ChainFileInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more