Struct rusoto_codecommit::UpdatePullRequestTitleInput[][src]

pub struct UpdatePullRequestTitleInput {
    pub pull_request_id: String,
    pub title: String,
}

Fields

The system-generated ID of the pull request. To get this ID, use ListPullRequests.

The updated title of the pull request. This will replace the existing title.

Trait Implementations

impl Default for UpdatePullRequestTitleInput
[src]

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

impl Debug for UpdatePullRequestTitleInput
[src]

Formats the value using the given formatter. Read more

impl Clone for UpdatePullRequestTitleInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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