pub struct CompletionEntry {
pub seq: CompletionSeq,
pub operation_id: OperationId,
pub kind: OperationKind,
pub display_name: String,
pub terminal_outcome: OperationTerminalOutcome,
pub completed_at_ms: Option<u64>,
}Expand description
A single completion event in the feed.
Fields§
§seq: CompletionSeq§operation_id: OperationId§kind: OperationKind§display_name: String§terminal_outcome: OperationTerminalOutcome§completed_at_ms: Option<u64>Trait Implementations§
Source§impl Clone for CompletionEntry
impl Clone for CompletionEntry
Source§fn clone(&self) -> CompletionEntry
fn clone(&self) -> CompletionEntry
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 CompletionEntry
impl Debug for CompletionEntry
Source§impl<'de> Deserialize<'de> for CompletionEntry
impl<'de> Deserialize<'de> for CompletionEntry
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
Auto Trait Implementations§
impl Freeze for CompletionEntry
impl RefUnwindSafe for CompletionEntry
impl Send for CompletionEntry
impl Sync for CompletionEntry
impl Unpin for CompletionEntry
impl UnsafeUnpin for CompletionEntry
impl UnwindSafe for CompletionEntry
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