Struct rusoto_codecommit::DeleteBranchInput[][src]

pub struct DeleteBranchInput {
    pub branch_name: String,
    pub repository_name: String,
}

Represents the input of a delete branch operation.

Fields

The name of the branch to delete.

The name of the repository that contains the branch to be deleted.

Trait Implementations

impl Default for DeleteBranchInput
[src]

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

impl Debug for DeleteBranchInput
[src]

Formats the value using the given formatter. Read more

impl Clone for DeleteBranchInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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