pub struct WorkQueueStatus {
pub kind: WorkQueueStatusKind,
pub queue_id: String,
pub work_id: Option<String>,
pub command_id: Option<String>,
pub record_seq: Option<u64>,
pub as_of_record_seq: Option<u64>,
pub issue_code: Option<String>,
pub timestamp_ms: u64,
pub details: Option<String>,
}Expand description
WorkQueueStatus data container.
Fields§
§kind: WorkQueueStatusKindkind field for kind.
queue_id: Stringqueue_id field for queue id.
work_id: Option<String>work_id field for work id.
command_id: Option<String>command_id field for command id.
record_seq: Option<u64>record_seq field for record seq.
as_of_record_seq: Option<u64>as_of_record_seq field for as of record seq.
issue_code: Option<String>issue_code field for issue code.
timestamp_ms: u64timestamp_ms field for timestamp ms.
details: Option<String>details field for details.
Trait Implementations§
Source§impl Clone for WorkQueueStatus
impl Clone for WorkQueueStatus
Source§fn clone(&self) -> WorkQueueStatus
fn clone(&self) -> WorkQueueStatus
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 WorkQueueStatus
impl Debug for WorkQueueStatus
Source§impl PartialEq for WorkQueueStatus
impl PartialEq for WorkQueueStatus
impl Eq for WorkQueueStatus
impl StructuralPartialEq for WorkQueueStatus
Auto Trait Implementations§
impl Freeze for WorkQueueStatus
impl RefUnwindSafe for WorkQueueStatus
impl Send for WorkQueueStatus
impl Sync for WorkQueueStatus
impl Unpin for WorkQueueStatus
impl UnsafeUnpin for WorkQueueStatus
impl UnwindSafe for WorkQueueStatus
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.