pub struct PageQuery {
pub page_number: Option<u32>,
pub page_size: Option<u32>,
pub extra: Vec<(String, String)>,
}Expand description
Pagination for the hacker list endpoints (page[number], page[size]).
Fields§
§page_number: Option<u32>1-based page number.
page_size: Option<u32>Page size (1–100 per the API).
extra: Vec<(String, String)>Any extra key=value pairs, passed through verbatim.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PageQuery
impl RefUnwindSafe for PageQuery
impl Send for PageQuery
impl Sync for PageQuery
impl Unpin for PageQuery
impl UnsafeUnpin for PageQuery
impl UnwindSafe for PageQuery
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