[][src]Struct rusoto_codecommit::PullRequestTarget

pub struct PullRequestTarget {
    pub destination_commit: Option<String>,
    pub destination_reference: Option<String>,
    pub merge_base: Option<String>,
    pub merge_metadata: Option<MergeMetadata>,
    pub repository_name: Option<String>,
    pub source_commit: Option<String>,
    pub source_reference: Option<String>,
}

Returns information about a pull request target.

Fields

destination_commit: Option<String>

The full commit ID that is the tip of the destination branch. This is the commit where the pull request was or will be merged.

destination_reference: Option<String>

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

merge_base: Option<String>

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

merge_metadata: Option<MergeMetadata>

Returns metadata about the state of the merge, including whether the merge has been made.

repository_name: Option<String>

The name of the repository that contains the pull request source and destination branches.

source_commit: Option<String>

The full commit ID of the tip of the source branch used to create the pull request. If the pull request branch is updated by a push while the pull request is open, the commit ID will change to reflect the new tip of the branch.

source_reference: Option<String>

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

Trait Implementations

impl PartialEq<PullRequestTarget> for PullRequestTarget[src]

impl Default for PullRequestTarget[src]

impl Clone for PullRequestTarget[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for PullRequestTarget[src]

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

Auto Trait Implementations

Blanket Implementations

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self