pub struct QueueListOpts {
pub count: usize,
pub offset: usize,
}Expand description
Options for listing jobs in a queue.
Fields§
§count: usizeMaximum number of jobs to return.
offset: usizeNumber of jobs to skip from the start.
Trait Implementations§
Source§impl Clone for QueueListOpts
impl Clone for QueueListOpts
Source§fn clone(&self) -> QueueListOpts
fn clone(&self) -> QueueListOpts
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 QueueListOpts
impl Debug for QueueListOpts
Source§impl<'de> Deserialize<'de> for QueueListOpts
impl<'de> Deserialize<'de> for QueueListOpts
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for QueueListOpts
impl RefUnwindSafe for QueueListOpts
impl Send for QueueListOpts
impl Sync for QueueListOpts
impl Unpin for QueueListOpts
impl UnsafeUnpin for QueueListOpts
impl UnwindSafe for QueueListOpts
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