Struct google_sourcerepo1::ListReposResponse[][src]

pub struct ListReposResponse {
    pub next_page_token: Option<String>,
    pub repos: Option<Vec<Repo>>,
}

Response for ListRepos. The size is not set in the returned repositories.

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

If non-empty, additional repositories exist within the project. These can be retrieved by including this value in the next ListReposRequest's page_token field.

The listed repos.

Trait Implementations

impl Default for ListReposResponse
[src]

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

impl Clone for ListReposResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ListReposResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for ListReposResponse
[src]

Auto Trait Implementations