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]

[src]

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

impl Debug for ListRepositoriesOutput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ListRepositoriesOutput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations