Struct aws_sdk_codecommit::types::PullRequestTarget
source · #[non_exhaustive]pub struct PullRequestTarget {
pub repository_name: Option<String>,
pub source_reference: Option<String>,
pub destination_reference: Option<String>,
pub destination_commit: Option<String>,
pub source_commit: Option<String>,
pub merge_base: Option<String>,
pub merge_metadata: Option<MergeMetadata>,
}
Expand description
Returns information about a pull request target.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.repository_name: Option<String>
The name of the repository that contains the pull request source and destination branches.
source_reference: Option<String>
The branch of the repository that contains the changes for the pull request. Also known as the source branch.
destination_reference: Option<String>
The branch of the repository where the pull request changes are merged. Also known as the destination branch.
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.
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 changes to reflect the new tip of the 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.
Implementations§
source§impl PullRequestTarget
impl PullRequestTarget
sourcepub fn repository_name(&self) -> Option<&str>
pub fn repository_name(&self) -> Option<&str>
The name of the repository that contains the pull request source and destination branches.
sourcepub fn source_reference(&self) -> Option<&str>
pub fn source_reference(&self) -> Option<&str>
The branch of the repository that contains the changes for the pull request. Also known as the source branch.
sourcepub fn destination_reference(&self) -> Option<&str>
pub fn destination_reference(&self) -> Option<&str>
The branch of the repository where the pull request changes are merged. Also known as the destination branch.
sourcepub fn destination_commit(&self) -> Option<&str>
pub fn destination_commit(&self) -> Option<&str>
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.
sourcepub fn source_commit(&self) -> Option<&str>
pub fn source_commit(&self) -> Option<&str>
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 changes to reflect the new tip of the branch.
sourcepub fn merge_base(&self) -> Option<&str>
pub fn merge_base(&self) -> Option<&str>
The commit ID of the most recent commit that the source branch and the destination branch have in common.
sourcepub fn merge_metadata(&self) -> Option<&MergeMetadata>
pub fn merge_metadata(&self) -> Option<&MergeMetadata>
Returns metadata about the state of the merge, including whether the merge has been made.
source§impl PullRequestTarget
impl PullRequestTarget
sourcepub fn builder() -> PullRequestTargetBuilder
pub fn builder() -> PullRequestTargetBuilder
Creates a new builder-style object to manufacture PullRequestTarget
.
Trait Implementations§
source§impl Clone for PullRequestTarget
impl Clone for PullRequestTarget
source§fn clone(&self) -> PullRequestTarget
fn clone(&self) -> PullRequestTarget
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PullRequestTarget
impl Debug for PullRequestTarget
source§impl PartialEq for PullRequestTarget
impl PartialEq for PullRequestTarget
source§fn eq(&self, other: &PullRequestTarget) -> bool
fn eq(&self, other: &PullRequestTarget) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for PullRequestTarget
Auto Trait Implementations§
impl Freeze for PullRequestTarget
impl RefUnwindSafe for PullRequestTarget
impl Send for PullRequestTarget
impl Sync for PullRequestTarget
impl Unpin for PullRequestTarget
impl UnwindSafe for PullRequestTarget
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more