logo
pub struct PullRequest {
    pub approval_rules: Option<Vec<ApprovalRule>>,
    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 revision_id: Option<String>,
    pub title: Option<String>,
}
Expand description

Returns information about a pull request.

Fields

approval_rules: Option<Vec<ApprovalRule>>

The approval rules applied to the pull request.

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 returns 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.

revision_id: Option<String>

The system-generated revision ID 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 repository users.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

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

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

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

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more