pub struct StartIdArgs {
pub start: Option<i64>,
pub start_id: Option<String>,
pub limit: Option<usize>,
pub all: bool,
pub requested: bool,
}Expand description
Parsed start-id-based pagination input. ClickUp’s v2 comment endpoints
(/v2/task/{id}/comment, /v2/list/{id}/comment, /v2/view/{id}/comment,
/v2/comment/{id}/reply) use this style: pass ?start=<unix_ms>&start_id=<id>
to retrieve items older than that boundary. Both params are required as a
pair when paginating; omitting them returns the first page (newest first).
The response is a bare { "comments": [...] } array — no pagination
metadata — so termination is inferred when the returned array is shorter
than the endpoint’s page size (25 for ClickUp’s comment endpoints).
Fields§
§start: Option<i64>§start_id: Option<String>§limit: Option<usize>§all: bool§requested: boolImplementations§
Trait Implementations§
Source§impl Clone for StartIdArgs
impl Clone for StartIdArgs
Source§fn clone(&self) -> StartIdArgs
fn clone(&self) -> StartIdArgs
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for StartIdArgs
impl Debug for StartIdArgs
Source§impl Default for StartIdArgs
impl Default for StartIdArgs
Source§fn default() -> StartIdArgs
fn default() -> StartIdArgs
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for StartIdArgs
impl RefUnwindSafe for StartIdArgs
impl Send for StartIdArgs
impl Sync for StartIdArgs
impl Unpin for StartIdArgs
impl UnsafeUnpin for StartIdArgs
impl UnwindSafe for StartIdArgs
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