[−][src]Struct rusoto_codecommit::PullRequestTarget
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]
fn eq(&self, other: &PullRequestTarget) -> bool
[src]
fn ne(&self, other: &PullRequestTarget) -> bool
[src]
impl Default for PullRequestTarget
[src]
fn default() -> PullRequestTarget
[src]
impl Clone for PullRequestTarget
[src]
fn clone(&self) -> 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]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for PullRequestTarget
impl Sync for PullRequestTarget
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self