[][src]Struct rusoto_codeguru_reviewer::SourceCodeType

pub struct SourceCodeType {
    pub commit_diff: Option<CommitDiffSourceCodeType>,
    pub repository_head: Option<RepositoryHeadSourceCodeType>,
}

Specifies the source code that is analyzed in a code review. A code review can analyze the source code that is specified using a pull request diff or a branch in an associated repository.

Fields

commit_diff: Option<CommitDiffSourceCodeType>

A SourceCodeType that specifies a commit diff created by a pull request on an associated repository.

repository_head: Option<RepositoryHeadSourceCodeType>

Trait Implementations

impl Clone for SourceCodeType[src]

impl Debug for SourceCodeType[src]

impl Default for SourceCodeType[src]

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

impl PartialEq<SourceCodeType> for SourceCodeType[src]

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