Struct rusoto_codecommit::Target[][src]

pub struct Target {
    pub destination_reference: Option<String>,
    pub repository_name: String,
    pub source_reference: String,
}

Returns information about a target for a pull request.

Fields

The branch of the repository where the pull request changes will be merged into. Also known as the destination branch.

The name of the repository that contains the pull request.

The branch of the repository that contains the changes for the pull request. Also known as the source branch.

Trait Implementations

impl Default for Target
[src]

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

impl Debug for Target
[src]

Formats the value using the given formatter. Read more

impl Clone for Target
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

impl Send for Target

impl Sync for Target