pub struct Page<T> {
pub items: T,
pub has_more: bool,
pub next_cursor: Option<PaginationCursor>,
}Fields§
§items: T§has_more: bool§next_cursor: Option<PaginationCursor>Trait Implementations§
Auto Trait Implementations§
impl<T> Freeze for Page<T>where
T: Freeze,
impl<T> RefUnwindSafe for Page<T>where
T: RefUnwindSafe,
impl<T> Send for Page<T>where
T: Send,
impl<T> Sync for Page<T>where
T: Sync,
impl<T> Unpin for Page<T>where
T: Unpin,
impl<T> UnsafeUnpin for Page<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for Page<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