pub struct ListParams {
pub offset: Option<u64>,
pub limit: Option<u64>,
pub desc: Option<bool>,
}Expand description
Query parameters for paginated list operations.
Fields§
§offset: Option<u64>Skip this many items from the start of the list.
limit: Option<u64>Maximum items to return (capped by the server).
desc: Option<bool>Sort newest-first when true.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ListParams
impl RefUnwindSafe for ListParams
impl Send for ListParams
impl Sync for ListParams
impl Unpin for ListParams
impl UnsafeUnpin for ListParams
impl UnwindSafe for ListParams
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