Struct rusoto_codecommit::PullRequestSourceReferenceUpdatedEventMetadata[][src]

pub struct PullRequestSourceReferenceUpdatedEventMetadata {
    pub after_commit_id: Option<String>,
    pub before_commit_id: Option<String>,
    pub repository_name: Option<String>,
}

Information about an update to the source branch of a pull request.

Fields

The full commit ID of the commit in the source branch that was the tip of the branch at the time the pull request was updated.

The full commit ID of the commit in the destination branch that was the tip of the branch at the time the pull request was updated.

The name of the repository where the pull request was updated.

Trait Implementations

impl Default for PullRequestSourceReferenceUpdatedEventMetadata
[src]

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

impl Debug for PullRequestSourceReferenceUpdatedEventMetadata
[src]

Formats the value using the given formatter. Read more

impl Clone for PullRequestSourceReferenceUpdatedEventMetadata
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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