pub struct ProgressJobInventory {
pub retained_count: u64,
pub hard_limit: u64,
pub reserved_integrity_headroom: u64,
pub integrity_count: u64,
pub resumable_count: u64,
pub mutation_count: u64,
pub records: Vec<ProgressJobInventoryRecord>,
}Expand description
Complete bounded inventory of the shared excluded progress allocation.
Fields§
§retained_count: u64Total retained records across all families.
hard_limit: u64Hard retained-record capacity.
reserved_integrity_headroom: u64Slots protected for integrity work from non-integrity starts.
integrity_count: u64Retained Deep integrity records.
resumable_count: u64Retained generic resumable records.
mutation_count: u64Retained fixed SQL mutation records.
records: Vec<ProgressJobInventoryRecord>Every validated retained record in stable key order.
Trait Implementations§
Source§impl CandidType for ProgressJobInventory
impl CandidType for ProgressJobInventory
Source§impl Clone for ProgressJobInventory
impl Clone for ProgressJobInventory
Source§fn clone(&self) -> ProgressJobInventory
fn clone(&self) -> ProgressJobInventory
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 ProgressJobInventory
impl Debug for ProgressJobInventory
Source§impl<'de> Deserialize<'de> for ProgressJobInventory
impl<'de> Deserialize<'de> for ProgressJobInventory
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for ProgressJobInventory
Source§impl PartialEq for ProgressJobInventory
impl PartialEq for ProgressJobInventory
impl StructuralPartialEq for ProgressJobInventory
Auto Trait Implementations§
impl Freeze for ProgressJobInventory
impl RefUnwindSafe for ProgressJobInventory
impl Send for ProgressJobInventory
impl Sync for ProgressJobInventory
impl Unpin for ProgressJobInventory
impl UnsafeUnpin for ProgressJobInventory
impl UnwindSafe for ProgressJobInventory
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