pub struct CheckpointCopyMeasurements {
pub samples: u64,
pub total_bytes: u64,
pub max_bytes: u64,
pub total_commands: u64,
pub max_commands: u64,
}Expand description
Physical checkpoint-copy ranges submitted to the backend. These are not allocator padding or restore initialization bytes, nor proof that every submitted byte was executed when the transfer fails.
Fields§
§samples: u64§total_bytes: u64§max_bytes: u64§total_commands: u64§max_commands: u64Trait Implementations§
Source§impl Clone for CheckpointCopyMeasurements
impl Clone for CheckpointCopyMeasurements
Source§fn clone(&self) -> CheckpointCopyMeasurements
fn clone(&self) -> CheckpointCopyMeasurements
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 moreimpl Copy for CheckpointCopyMeasurements
Source§impl Debug for CheckpointCopyMeasurements
impl Debug for CheckpointCopyMeasurements
Source§impl Default for CheckpointCopyMeasurements
impl Default for CheckpointCopyMeasurements
Source§fn default() -> CheckpointCopyMeasurements
fn default() -> CheckpointCopyMeasurements
Returns the “default value” for a type. Read more
impl Eq for CheckpointCopyMeasurements
impl StructuralPartialEq for CheckpointCopyMeasurements
Auto Trait Implementations§
impl Freeze for CheckpointCopyMeasurements
impl RefUnwindSafe for CheckpointCopyMeasurements
impl Send for CheckpointCopyMeasurements
impl Sync for CheckpointCopyMeasurements
impl Unpin for CheckpointCopyMeasurements
impl UnsafeUnpin for CheckpointCopyMeasurements
impl UnwindSafe for CheckpointCopyMeasurements
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