pub struct ProcessQueueEvidence {
pub kind: String,
pub evidence_id: String,
pub effect_id: String,
pub effect_type: String,
pub work_id: String,
pub queue_record_kind: String,
pub result: Option<String>,
pub error: Option<String>,
pub recorded_at_ms: u64,
}Expand description
ProcessQueueEvidence data container.
Fields§
§kind: Stringkind field for kind.
evidence_id: Stringevidence_id field for evidence id.
effect_id: Stringeffect_id field for effect id.
effect_type: Stringeffect_type field for effect type.
work_id: Stringwork_id field for work id.
queue_record_kind: Stringqueue_record_kind field for queue record kind.
result: Option<String>result field for result.
error: Option<String>error field for error.
recorded_at_ms: u64recorded_at_ms field for recorded at ms.
Trait Implementations§
Source§impl Clone for ProcessQueueEvidence
impl Clone for ProcessQueueEvidence
Source§fn clone(&self) -> ProcessQueueEvidence
fn clone(&self) -> ProcessQueueEvidence
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 ProcessQueueEvidence
impl Debug for ProcessQueueEvidence
Source§impl PartialEq for ProcessQueueEvidence
impl PartialEq for ProcessQueueEvidence
impl Eq for ProcessQueueEvidence
impl StructuralPartialEq for ProcessQueueEvidence
Auto Trait Implementations§
impl Freeze for ProcessQueueEvidence
impl RefUnwindSafe for ProcessQueueEvidence
impl Send for ProcessQueueEvidence
impl Sync for ProcessQueueEvidence
impl Unpin for ProcessQueueEvidence
impl UnsafeUnpin for ProcessQueueEvidence
impl UnwindSafe for ProcessQueueEvidence
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.