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]

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

impl Debug for CreateBranchInput
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateBranchInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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