pub struct ProgressJobInventoryRecord {
pub family: ProgressJobFamily,
pub job_id: [u8; 32],
pub lifecycle: ProgressJobLifecycle,
pub sequence: Option<u64>,
}Expand description
One privacy-bounded retained-record inventory entry.
Fields§
§family: ProgressJobFamilyDurable progress family.
job_id: [u8; 32]Family-owned job identity bytes.
lifecycle: ProgressJobLifecycleNormalized retained lifecycle.
sequence: Option<u64>Family sequence when its current record carries one.
Trait Implementations§
Source§impl Clone for ProgressJobInventoryRecord
impl Clone for ProgressJobInventoryRecord
Source§fn clone(&self) -> ProgressJobInventoryRecord
fn clone(&self) -> ProgressJobInventoryRecord
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 ProgressJobInventoryRecord
impl Debug for ProgressJobInventoryRecord
Source§impl<'de> Deserialize<'de> for ProgressJobInventoryRecord
impl<'de> Deserialize<'de> for ProgressJobInventoryRecord
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 ProgressJobInventoryRecord
impl StructuralPartialEq for ProgressJobInventoryRecord
Auto Trait Implementations§
impl Freeze for ProgressJobInventoryRecord
impl RefUnwindSafe for ProgressJobInventoryRecord
impl Send for ProgressJobInventoryRecord
impl Sync for ProgressJobInventoryRecord
impl Unpin for ProgressJobInventoryRecord
impl UnsafeUnpin for ProgressJobInventoryRecord
impl UnwindSafe for ProgressJobInventoryRecord
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