Struct rusoto_codecommit::CreateBranchInput [] [src]

pub struct CreateBranchInput {
    pub branch_name: String,
    pub commit_id: String,
    pub repository_name: String,
}

Represents the input of a create branch operation.

Fields

The name of the new branch to create.

The ID of the commit to point the new branch to.

The name of the repository in which you want to create the new branch.

Trait Implementations

impl Default for CreateBranchInput
[src]

[src]

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

impl Debug for CreateBranchInput
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CreateBranchInput
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations