pub struct WorkQueueAvailablePage<T> {
pub items: Vec<WorkQueueAvailableItem<T>>,
pub next_after_work_id: Option<String>,
pub next_after_admission_seq: Option<u64>,
pub has_more: bool,
pub as_of_record_seq: u64,
}Expand description
WorkQueueAvailablePage data container.
Fields§
§items: Vec<WorkQueueAvailableItem<T>>items field for items.
next_after_work_id: Option<String>next_after_work_id field for next after work id.
next_after_admission_seq: Option<u64>next_after_admission_seq field for next after admission seq.
has_more: boolhas_more field for has more.
as_of_record_seq: u64as_of_record_seq field for as of record seq.
Trait Implementations§
Source§impl<T: Clone> Clone for WorkQueueAvailablePage<T>
impl<T: Clone> Clone for WorkQueueAvailablePage<T>
Source§fn clone(&self) -> WorkQueueAvailablePage<T>
fn clone(&self) -> WorkQueueAvailablePage<T>
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<T: Debug> Debug for WorkQueueAvailablePage<T>
impl<T: Debug> Debug for WorkQueueAvailablePage<T>
Source§impl<T: PartialEq> PartialEq for WorkQueueAvailablePage<T>
impl<T: PartialEq> PartialEq for WorkQueueAvailablePage<T>
impl<T> StructuralPartialEq for WorkQueueAvailablePage<T>
Auto Trait Implementations§
impl<T> Freeze for WorkQueueAvailablePage<T>
impl<T> RefUnwindSafe for WorkQueueAvailablePage<T>where
T: RefUnwindSafe,
impl<T> Send for WorkQueueAvailablePage<T>where
T: Send,
impl<T> Sync for WorkQueueAvailablePage<T>where
T: Sync,
impl<T> Unpin for WorkQueueAvailablePage<T>where
T: Unpin,
impl<T> UnsafeUnpin for WorkQueueAvailablePage<T>
impl<T> UnwindSafe for WorkQueueAvailablePage<T>where
T: UnwindSafe,
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