pub struct ProcessQueueAuditRecord {
pub kind: String,
pub seq: u64,
pub outcome: String,
pub effect_id: Option<String>,
pub effect_type: Option<String>,
pub work_id: Option<String>,
pub queue_record_kind: Option<String>,
pub evidence_id: Option<String>,
}Expand description
ProcessQueueAuditRecord data container.
Fields§
§kind: Stringkind field for kind.
seq: u64seq field for seq.
outcome: Stringoutcome field for outcome.
effect_id: Option<String>effect_id field for effect id.
effect_type: Option<String>effect_type field for effect type.
work_id: Option<String>work_id field for work id.
queue_record_kind: Option<String>queue_record_kind field for queue record kind.
evidence_id: Option<String>evidence_id field for evidence id.
Trait Implementations§
Source§impl Clone for ProcessQueueAuditRecord
impl Clone for ProcessQueueAuditRecord
Source§fn clone(&self) -> ProcessQueueAuditRecord
fn clone(&self) -> ProcessQueueAuditRecord
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 ProcessQueueAuditRecord
impl Debug for ProcessQueueAuditRecord
Source§impl PartialEq for ProcessQueueAuditRecord
impl PartialEq for ProcessQueueAuditRecord
impl Eq for ProcessQueueAuditRecord
impl StructuralPartialEq for ProcessQueueAuditRecord
Auto Trait Implementations§
impl Freeze for ProcessQueueAuditRecord
impl RefUnwindSafe for ProcessQueueAuditRecord
impl Send for ProcessQueueAuditRecord
impl Sync for ProcessQueueAuditRecord
impl Unpin for ProcessQueueAuditRecord
impl UnsafeUnpin for ProcessQueueAuditRecord
impl UnwindSafe for ProcessQueueAuditRecord
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.