[−][src]Struct rusoto_codecommit::PullRequest
Returns information about a pull request.
Fields
The Amazon Resource Name (ARN) of the user who created the pull request.
client_request_token: Option<String>
A unique, client-generated idempotency token that when provided in a request, ensures the request cannot be repeated with a changed parameter. If a request is received with the same parameters and a token is included, the request will return information about the initial request that used that token.
creation_date: Option<f64>
The date and time the pull request was originally created, in timestamp format.
description: Option<String>
The user-defined description of the pull request. This description can be used to clarify what should be reviewed and other details of the request.
last_activity_date: Option<f64>
The day and time of the last user or system activity on the pull request, in timestamp format.
pull_request_id: Option<String>
The system-generated ID of the pull request.
pull_request_status: Option<String>
The status of the pull request. Pull request status can only change from OPEN
to CLOSED
.
pull_request_targets: Option<Vec<PullRequestTarget>>
The targets of the pull request, including the source branch and destination branch for the pull request.
title: Option<String>
The user-defined title of the pull request. This title is displayed in the list of pull requests to other users of the repository.
Trait Implementations
impl PartialEq<PullRequest> for PullRequest
[src]
fn eq(&self, other: &PullRequest) -> bool
[src]
fn ne(&self, other: &PullRequest) -> bool
[src]
impl Default for PullRequest
[src]
fn default() -> PullRequest
[src]
impl Clone for PullRequest
[src]
fn clone(&self) -> PullRequest
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for PullRequest
[src]
impl<'de> Deserialize<'de> for PullRequest
[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for PullRequest
impl Sync for PullRequest
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