pub struct WorkQueueDeadLetterParams {
pub limit: Option<usize>,
pub after_dead_letter_seq: Option<u64>,
pub after_work_id: Option<String>,
}Expand description
WorkQueueDeadLetterParams data container.
Fields§
§limit: Option<usize>limit field for limit.
after_dead_letter_seq: Option<u64>after_dead_letter_seq field for after dead letter seq.
after_work_id: Option<String>after_work_id field for after work id.
Trait Implementations§
Source§impl Clone for WorkQueueDeadLetterParams
impl Clone for WorkQueueDeadLetterParams
Source§fn clone(&self) -> WorkQueueDeadLetterParams
fn clone(&self) -> WorkQueueDeadLetterParams
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 WorkQueueDeadLetterParams
impl Debug for WorkQueueDeadLetterParams
Source§impl Default for WorkQueueDeadLetterParams
impl Default for WorkQueueDeadLetterParams
Source§fn default() -> WorkQueueDeadLetterParams
fn default() -> WorkQueueDeadLetterParams
Returns the “default value” for a type. Read more
impl Eq for WorkQueueDeadLetterParams
impl StructuralPartialEq for WorkQueueDeadLetterParams
Auto Trait Implementations§
impl Freeze for WorkQueueDeadLetterParams
impl RefUnwindSafe for WorkQueueDeadLetterParams
impl Send for WorkQueueDeadLetterParams
impl Sync for WorkQueueDeadLetterParams
impl Unpin for WorkQueueDeadLetterParams
impl UnsafeUnpin for WorkQueueDeadLetterParams
impl UnwindSafe for WorkQueueDeadLetterParams
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.