[][src]Struct rusoto_codecommit::CreatePullRequestInput

pub struct CreatePullRequestInput {
    pub client_request_token: Option<String>,
    pub description: Option<String>,
    pub targets: Vec<Target>,
    pub title: String,
}

Fields

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.

The AWS SDKs prepopulate client request tokens. If using an AWS SDK, you do not have to generate an idempotency token, as this will be done for you.

description: Option<String>

A description of the pull request.

targets: Vec<Target>

The targets for the pull request, including the source of the code to be reviewed (the source branch), and the destination where the creator of the pull request intends the code to be merged after the pull request is closed (the destination branch).

title: String

The title of the pull request. This title will be used to identify the pull request to other users in the repository.

Trait Implementations

impl PartialEq<CreatePullRequestInput> for CreatePullRequestInput[src]

impl Default for CreatePullRequestInput[src]

impl Clone for CreatePullRequestInput[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CreatePullRequestInput[src]

impl Serialize for CreatePullRequestInput[src]

Auto Trait Implementations

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> Erased for T

impl<T> Same for T

type Output = T

Should always be Self