Struct rusoto_codecommit::ListRepositoriesOutput[][src]

pub struct ListRepositoriesOutput {
    pub next_token: Option<String>,
    pub repositories: Option<Vec<RepositoryNameIdPair>>,
}

Represents the output of a list repositories operation.

Fields

An enumeration token that allows the operation to batch the results of the operation. Batch sizes are 1,000 for list repository operations. When the client sends the token back to AWS CodeCommit, another page of 1,000 records is retrieved.

Lists the repositories called by the list repositories operation.

Trait Implementations

impl Default for ListRepositoriesOutput
[src]

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

impl Debug for ListRepositoriesOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for ListRepositoriesOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ListRepositoriesOutput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations