pub struct CompletionDetail {
pub key: CompletionKey,
pub display_name: String,
pub last_result: CompletionKind,
pub last_completed_at_ms: u64,
pub download_ids: Vec<DownloadId>,
pub attempt_counts: AttemptCounts,
}Expand description
Details for a single completed artifact in a queue run.
Fields§
§key: CompletionKeyStable artifact identity key.
display_name: StringHuman-readable display name for UI.
last_result: CompletionKindMost recent result for this artifact.
last_completed_at_ms: u64Unix timestamp (milliseconds since epoch) of last completion.
download_ids: Vec<DownloadId>All download IDs that contributed to this completion. Multiple IDs indicate retries or re-queues.
attempt_counts: AttemptCountsBreakdown of attempts by result kind.
Trait Implementations§
Source§impl Clone for CompletionDetail
impl Clone for CompletionDetail
Source§fn clone(&self) -> CompletionDetail
fn clone(&self) -> CompletionDetail
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 moreSource§impl Debug for CompletionDetail
impl Debug for CompletionDetail
Source§impl<'de> Deserialize<'de> for CompletionDetail
impl<'de> Deserialize<'de> for CompletionDetail
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
Source§impl PartialEq for CompletionDetail
impl PartialEq for CompletionDetail
Source§impl Serialize for CompletionDetail
impl Serialize for CompletionDetail
impl Eq for CompletionDetail
impl StructuralPartialEq for CompletionDetail
Auto Trait Implementations§
impl Freeze for CompletionDetail
impl RefUnwindSafe for CompletionDetail
impl Send for CompletionDetail
impl Sync for CompletionDetail
impl Unpin for CompletionDetail
impl UnwindSafe for CompletionDetail
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