[][src]Struct rusoto_codeguru_reviewer::CodeReviewSummary

pub struct CodeReviewSummary {
    pub code_review_arn: Option<String>,
    pub created_time_stamp: Option<f64>,
    pub last_updated_time_stamp: Option<f64>,
    pub metrics_summary: Option<MetricsSummary>,
    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 state: Option<String>,
    pub type_: Option<String>,
}

Information about the summary of the 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_summary: Option<MetricsSummary>

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, GitHub Enterprise Server, or Bitbucket repository, this is the username for the account that owns the repository.

provider_type: Option<String>

The provider type of the repository association.

pull_request_id: Option<String>

The pull request ID for the code review.

repository_name: Option<String>

The name of the repository.

state: Option<String>

The state of the code review.

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.

type_: Option<String>

The type of the code review.

Trait Implementations

impl Clone for CodeReviewSummary[src]

impl Debug for CodeReviewSummary[src]

impl Default for CodeReviewSummary[src]

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

impl PartialEq<CodeReviewSummary> for CodeReviewSummary[src]

impl StructuralPartialEq for CodeReviewSummary[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, 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.