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