pub struct MigrationReport {
pub source_version: u32,
pub destination_version: u32,
pub records: u64,
pub value_bytes: u64,
pub destination_size: u64,
pub ambiguous_legacy_markers: u64,
}Expand description
Summary of a completed and verified migration.
Fields§
§source_version: u32Legacy source format version.
destination_version: u32Format version written to the destination.
records: u64Number of recovered records copied.
value_bytes: u64Total logical value bytes copied.
destination_size: u64Allocated destination file size.
ambiguous_legacy_markers: u64Number of ambiguous legacy markers accepted by explicit opt-in.
Trait Implementations§
Source§impl Clone for MigrationReport
impl Clone for MigrationReport
Source§fn clone(&self) -> MigrationReport
fn clone(&self) -> MigrationReport
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 moreSource§impl Debug for MigrationReport
impl Debug for MigrationReport
Source§impl PartialEq for MigrationReport
impl PartialEq for MigrationReport
Source§fn eq(&self, other: &MigrationReport) -> bool
fn eq(&self, other: &MigrationReport) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for MigrationReport
impl StructuralPartialEq for MigrationReport
Auto Trait Implementations§
impl Freeze for MigrationReport
impl RefUnwindSafe for MigrationReport
impl Send for MigrationReport
impl Sync for MigrationReport
impl Unpin for MigrationReport
impl UnsafeUnpin for MigrationReport
impl UnwindSafe for MigrationReport
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compares
self to key and returns true if they are equal.