pub struct TransferPlanStats {
pub total_objects: usize,
pub packable_objects: usize,
pub sidecar_objects: usize,
pub blobs: usize,
pub trees: usize,
pub states: usize,
pub actions: usize,
pub redactions: usize,
pub state_visibilities: usize,
}Fields§
§total_objects: usize§packable_objects: usize§sidecar_objects: usize§blobs: usize§trees: usize§states: usize§actions: usize§redactions: usize§state_visibilities: usizeTrait Implementations§
Source§impl Clone for TransferPlanStats
impl Clone for TransferPlanStats
Source§fn clone(&self) -> TransferPlanStats
fn clone(&self) -> TransferPlanStats
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 TransferPlanStats
Source§impl Debug for TransferPlanStats
impl Debug for TransferPlanStats
Source§impl Default for TransferPlanStats
impl Default for TransferPlanStats
Source§fn default() -> TransferPlanStats
fn default() -> TransferPlanStats
Returns the “default value” for a type. Read more
impl Eq for TransferPlanStats
Source§impl PartialEq for TransferPlanStats
impl PartialEq for TransferPlanStats
Source§fn eq(&self, other: &TransferPlanStats) -> bool
fn eq(&self, other: &TransferPlanStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TransferPlanStats
Auto Trait Implementations§
impl Freeze for TransferPlanStats
impl RefUnwindSafe for TransferPlanStats
impl Send for TransferPlanStats
impl Sync for TransferPlanStats
impl Unpin for TransferPlanStats
impl UnsafeUnpin for TransferPlanStats
impl UnwindSafe for TransferPlanStats
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