pub struct TaskListResponse {
pub tasks: Vec<TaskSummary>,
pub limit: usize,
pub offset: usize,
}Expand description
Tasks list response payload.
This struct represents the stable schema for the tasks list endpoint response.
Fields§
§tasks: Vec<TaskSummary>Task summaries returned for the current page.
limit: usizeThe limit applied to the result set.
offset: usizeThe offset applied to the result set.
Trait Implementations§
Source§impl Clone for TaskListResponse
impl Clone for TaskListResponse
Source§fn clone(&self) -> TaskListResponse
fn clone(&self) -> TaskListResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 TaskListResponse
impl Debug for TaskListResponse
Auto Trait Implementations§
impl Freeze for TaskListResponse
impl RefUnwindSafe for TaskListResponse
impl Send for TaskListResponse
impl Sync for TaskListResponse
impl Unpin for TaskListResponse
impl UnsafeUnpin for TaskListResponse
impl UnwindSafe for TaskListResponse
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