[][src]Struct rusoto_codeguru_reviewer::RecommendationSummary

pub struct RecommendationSummary {
    pub description: Option<String>,
    pub end_line: Option<i64>,
    pub file_path: Option<String>,
    pub recommendation_id: Option<String>,
    pub start_line: Option<i64>,
}

Information about recommendations.

Fields

description: Option<String>

A description of the recommendation generated by CodeGuru Reviewer for the lines of code between the start line and the end line.

end_line: Option<i64>

Last line where the recommendation is applicable in the source commit or source branch. For a single line comment the start line and end line values are the same.

file_path: Option<String>

Name of the file on which a recommendation is provided.

recommendation_id: Option<String>

The recommendation ID that can be used to track the provided recommendations. Later on it can be used to collect the feedback.

start_line: Option<i64>

Start line from where the recommendation is applicable in the source commit or source branch.

Trait Implementations

impl Clone for RecommendationSummary[src]

impl Debug for RecommendationSummary[src]

impl Default for RecommendationSummary[src]

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

impl PartialEq<RecommendationSummary> for RecommendationSummary[src]

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