[][src]Struct rusoto_codeguru_reviewer::CodeReview

pub struct CodeReview {
    pub code_review_arn: Option<String>,
    pub created_time_stamp: Option<f64>,
    pub last_updated_time_stamp: Option<f64>,
    pub metrics: Option<Metrics>,
    pub name: Option<String>,
    pub owner: Option<String>,
    pub provider_type: Option<String>,
    pub pull_request_id: Option<String>,
    pub repository_name: Option<String>,
    pub source_code_type: Option<SourceCodeType>,
    pub state: Option<String>,
    pub state_reason: Option<String>,
    pub type_: Option<String>,
}

Information about a code review.

Fields

code_review_arn: Option<String>

The Amazon Resource Name (ARN) of the CodeReview object.

created_time_stamp: Option<f64>

The time, in milliseconds since the epoch, when the code review was created.

last_updated_time_stamp: Option<f64>

The time, in milliseconds since the epoch, when the code review was last updated.

metrics: Option<Metrics>

The statistics from the code review.

name: Option<String>

The name of the code review.

owner: Option<String>

The owner of the repository. For an AWS CodeCommit repository, this is the AWS account ID of the account that owns the repository. For a GitHub or Bitbucket repository, this is the username for the account that owns the repository.

provider_type: Option<String>

The type of repository that contains the reviewed code (for example, GitHub or Bitbucket).

pull_request_id: Option<String>

The pull request ID for the code review.

repository_name: Option<String>

The name of the repository.

source_code_type: Option<SourceCodeType>

The type of the source code for the code review.

state: Option<String>

The valid code review states are:

  • Completed: The code review is complete.

  • Pending: The code review started and has not completed or failed.

  • Failed: The code review failed.

  • Deleting: The code review is being deleted.

state_reason: Option<String>

The reason for the state of the code review.

type_: Option<String>

The type of code review.

Trait Implementations

impl Clone for CodeReview[src]

impl Debug for CodeReview[src]

impl Default for CodeReview[src]

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

impl PartialEq<CodeReview> for CodeReview[src]

impl StructuralPartialEq for CodeReview[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.