pub struct FetchPage {
pub items: Vec<CanonicalMedia>,
pub next_cursor: Option<SyncCursor>,
}Expand description
A page of results returned by a paginated provider fetch.
Fields§
§items: Vec<CanonicalMedia>The media items on this page.
next_cursor: Option<SyncCursor>Cursor for the next page. None when the provider has exhausted its dataset.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FetchPage
impl RefUnwindSafe for FetchPage
impl Send for FetchPage
impl Sync for FetchPage
impl Unpin for FetchPage
impl UnsafeUnpin for FetchPage
impl UnwindSafe for FetchPage
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