[][src]Struct rusoto_codecommit::PullRequest

pub struct PullRequest {
    pub author_arn: Option<String>,
    pub client_request_token: Option<String>,
    pub creation_date: Option<f64>,
    pub description: Option<String>,
    pub last_activity_date: Option<f64>,
    pub pull_request_id: Option<String>,
    pub pull_request_status: Option<String>,
    pub pull_request_targets: Option<Vec<PullRequestTarget>>,
    pub title: Option<String>,
}

Returns information about a pull request.

Fields

author_arn: Option<String>

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]

impl Default for PullRequest[src]

impl Clone for 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]

Auto Trait Implementations

impl Send for PullRequest

impl Sync for PullRequest

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