Struct rusoto_codecommit::ListBranchesInput[][src]

pub struct ListBranchesInput {
    pub next_token: Option<String>,
    pub repository_name: String,
}

Represents the input of a list branches operation.

Fields

An enumeration token that allows the operation to batch the results.

The name of the repository that contains the branches.

Trait Implementations

impl Default for ListBranchesInput
[src]

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

impl Debug for ListBranchesInput
[src]

Formats the value using the given formatter. Read more

impl Clone for ListBranchesInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ListBranchesInput
[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