pub struct BackupMetaVerifyResult {
pub checkpoint_file: String,
pub backup_type: String,
pub from_lsn: u64,
pub to_lsn: u64,
pub tablespace_min_lsn: u64,
pub tablespace_max_lsn: u64,
pub pages_before_window: Vec<BackupMetaPageIssue>,
pub pages_after_window: Vec<BackupMetaPageIssue>,
pub passed: bool,
}Expand description
Result of verifying tablespace page LSNs against XtraBackup checkpoint metadata.
Fields§
§checkpoint_file: String§backup_type: String§from_lsn: u64§to_lsn: u64§tablespace_min_lsn: u64§tablespace_max_lsn: u64§pages_before_window: Vec<BackupMetaPageIssue>§pages_after_window: Vec<BackupMetaPageIssue>§passed: boolTrait Implementations§
Source§impl Clone for BackupMetaVerifyResult
impl Clone for BackupMetaVerifyResult
Source§fn clone(&self) -> BackupMetaVerifyResult
fn clone(&self) -> BackupMetaVerifyResult
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 BackupMetaVerifyResult
impl Debug for BackupMetaVerifyResult
Auto Trait Implementations§
impl Freeze for BackupMetaVerifyResult
impl RefUnwindSafe for BackupMetaVerifyResult
impl Send for BackupMetaVerifyResult
impl Sync for BackupMetaVerifyResult
impl Unpin for BackupMetaVerifyResult
impl UnsafeUnpin for BackupMetaVerifyResult
impl UnwindSafe for BackupMetaVerifyResult
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