pub struct PageOpts {
pub limit: usize,
pub cursor: Option<String>,
}Expand description
Pagination options for retrieving lists of items
Fields§
§limit: usizeThe maximum number of items to return
cursor: Option<String>The starting point for pagination
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PageOpts
impl RefUnwindSafe for PageOpts
impl Send for PageOpts
impl Sync for PageOpts
impl Unpin for PageOpts
impl UnwindSafe for PageOpts
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