pub struct CheckpointVerification {
pub valid: bool,
pub node_count_match: bool,
pub edge_count_match: bool,
pub nodes_added: u64,
pub edges_added: u64,
}Expand description
Result of verifying a migration checkpoint
Fields§
§valid: boolWhether the checkpoint is valid (data not lost)
node_count_match: boolWhether node count matches exactly
edge_count_match: boolWhether edge count matches exactly
nodes_added: u64Number of nodes added since checkpoint
edges_added: u64Number of edges added since checkpoint
Trait Implementations§
Source§impl Clone for CheckpointVerification
impl Clone for CheckpointVerification
Source§fn clone(&self) -> CheckpointVerification
fn clone(&self) -> CheckpointVerification
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 moreAuto Trait Implementations§
impl Freeze for CheckpointVerification
impl RefUnwindSafe for CheckpointVerification
impl Send for CheckpointVerification
impl Sync for CheckpointVerification
impl Unpin for CheckpointVerification
impl UnwindSafe for CheckpointVerification
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