pub struct TaskPage<T> {
pub items: Vec<T>,
pub resource_version: String,
pub continuation: Option<TaskContinuation>,
pub remaining_item_count: usize,
}Expand description
One page from a Task collection snapshot.
Fields§
§items: Vec<T>Items on this page.
resource_version: StringOpaque collection snapshot version.
continuation: Option<TaskContinuation>Cursor for the next page.
None means this is the last page.
remaining_item_count: usizeNumber of matching items after this page in the same snapshot.
Trait Implementations§
impl<T: Eq> Eq for TaskPage<T>
impl<T: PartialEq> StructuralPartialEq for TaskPage<T>
Auto Trait Implementations§
impl<T> Freeze for TaskPage<T>
impl<T> RefUnwindSafe for TaskPage<T>where
T: RefUnwindSafe,
impl<T> Send for TaskPage<T>where
T: Send,
impl<T> Sync for TaskPage<T>where
T: Sync,
impl<T> Unpin for TaskPage<T>where
T: Unpin,
impl<T> UnsafeUnpin for TaskPage<T>
impl<T> UnwindSafe for TaskPage<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