Struct google_cloudtasks2_beta3::ListTasksResponse[][src]

pub struct ListTasksResponse {
    pub next_page_token: Option<String>,
    pub tasks: Option<Vec<Task>>,
}

Response message for listing tasks using ListTasks.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

A token to retrieve next page of results.

To return the next page of results, call ListTasks with this value as the page_token.

If the next_page_token is empty, there are no more results.

The list of tasks.

Trait Implementations

impl Default for ListTasksResponse
[src]

Returns the "default value" for a type. Read more

impl Clone for ListTasksResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ListTasksResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for ListTasksResponse
[src]

Auto Trait Implementations