pub struct ListTasksResponse {
pub tasks: Vec<Task>,
pub next_page_token: String,
pub page_size: i32,
pub total_size: i32,
}Expand description
Response for tasks/list.
Fields§
§tasks: Vec<Task>Matching tasks.
next_page_token: StringPagination token for next page.
page_size: i32Page size used.
total_size: i32Total number of matching tasks.
Trait Implementations§
Source§impl Clone for ListTasksResponse
impl Clone for ListTasksResponse
Source§fn clone(&self) -> ListTasksResponse
fn clone(&self) -> ListTasksResponse
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 ListTasksResponse
impl Debug for ListTasksResponse
Source§impl<'de> Deserialize<'de> for ListTasksResponse
impl<'de> Deserialize<'de> for ListTasksResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ListTasksResponse
impl RefUnwindSafe for ListTasksResponse
impl Send for ListTasksResponse
impl Sync for ListTasksResponse
impl Unpin for ListTasksResponse
impl UnsafeUnpin for ListTasksResponse
impl UnwindSafe for ListTasksResponse
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