pub struct MigrationCheckpoint {
pub timestamp: DateTime<Utc>,
pub node_count: u64,
pub edge_count: u64,
pub session_count: u64,
pub storage_bytes: u64,
}Expand description
Snapshot of database state for migration checkpoints
Fields§
§timestamp: DateTime<Utc>When the checkpoint was created
node_count: u64Number of nodes at checkpoint
edge_count: u64Number of edges at checkpoint
session_count: u64Number of sessions at checkpoint
storage_bytes: u64Storage size in bytes at checkpoint
Trait Implementations§
Source§impl Clone for MigrationCheckpoint
impl Clone for MigrationCheckpoint
Source§fn clone(&self) -> MigrationCheckpoint
fn clone(&self) -> MigrationCheckpoint
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 MigrationCheckpoint
impl RefUnwindSafe for MigrationCheckpoint
impl Send for MigrationCheckpoint
impl Sync for MigrationCheckpoint
impl Unpin for MigrationCheckpoint
impl UnwindSafe for MigrationCheckpoint
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