pub struct Paging {
pub limit: NonZeroU32,
pub token: Option<PageToken>,
}Expand description
Which page of a result set the caller wants.
Fields§
§limit: NonZeroU32The most items to return.
token: Option<PageToken>Where to resume, or None to start at the beginning.
Trait Implementations§
impl StructuralPartialEq for Paging
Auto Trait Implementations§
impl Freeze for Paging
impl RefUnwindSafe for Paging
impl Send for Paging
impl Sync for Paging
impl Unpin for Paging
impl UnsafeUnpin for Paging
impl UnwindSafe for Paging
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