[][src]Struct rusoto_codecommit::PullRequestCreatedEventMetadata

pub struct PullRequestCreatedEventMetadata {
    pub destination_commit_id: Option<String>,
    pub merge_base: Option<String>,
    pub repository_name: Option<String>,
    pub source_commit_id: Option<String>,
}

Metadata about the pull request that is used when comparing the pull request source with its destination.

Fields

destination_commit_id: Option<String>

The commit ID of the tip of the branch specified as the destination branch when the pull request was created.

merge_base: Option<String>

The commit ID of the most recent commit that the source branch and the destination branch have in common.

repository_name: Option<String>

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

source_commit_id: Option<String>

The commit ID on the source branch used when the pull request was created.

Trait Implementations

impl Clone for PullRequestCreatedEventMetadata[src]

impl Default for PullRequestCreatedEventMetadata[src]

impl PartialEq<PullRequestCreatedEventMetadata> for PullRequestCreatedEventMetadata[src]

impl Debug for PullRequestCreatedEventMetadata[src]

impl StructuralPartialEq for PullRequestCreatedEventMetadata[src]

impl<'de> Deserialize<'de> for PullRequestCreatedEventMetadata[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self