[][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

The Amazon Resource Name (ARN) of the user who created the pull request.

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.

The date and time the pull request was originally created, in timestamp format.

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.

The day and time of the last user or system activity on the pull request, in timestamp format.

The system-generated ID of the pull request.

The status of the pull request. Pull request status can only change from OPEN to CLOSED.

The targets of the pull request, including the source branch and destination branch for the pull request.

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 Default for PullRequest
[src]

Returns the "default value" for a type. Read more

impl PartialEq<PullRequest> for PullRequest
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Clone for PullRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for PullRequest
[src]

Formats the value using the given formatter. Read more

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

Deserialize this value from the given Serde deserializer. Read more

Auto Trait Implementations

impl Send for PullRequest

impl Sync for PullRequest

Blanket Implementations

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

Performs the conversion.

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

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T> From for T
[src]

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

Mutably borrows from an owned value. Read more

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more

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

impl<T> Same for T

Should always be Self

impl<T> Erased for T