Struct aws_sdk_codegurureviewer::model::CodeReviewType
source · [−]#[non_exhaustive]pub struct CodeReviewType {
pub repository_analysis: Option<RepositoryAnalysis>,
pub analysis_types: Option<Vec<AnalysisType>>,
}Expand description
The type of a code review. There are two code review types:
-
PullRequest- A code review that is automatically triggered by a pull request on an associated repository. -
RepositoryAnalysis- A code review that analyzes all code under a specified branch in an associated repository. The associated repository is specified using its ARN inCreateCodeReview.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.repository_analysis: Option<RepositoryAnalysis> A code review that analyzes all code under a specified branch in an associated repository. The associated repository is specified using its ARN in CreateCodeReview .
analysis_types: Option<Vec<AnalysisType>>They types of analysis performed during a repository analysis or a pull request review. You can specify either Security, CodeQuality, or both.
Implementations
sourceimpl CodeReviewType
impl CodeReviewType
sourcepub fn repository_analysis(&self) -> Option<&RepositoryAnalysis>
pub fn repository_analysis(&self) -> Option<&RepositoryAnalysis>
A code review that analyzes all code under a specified branch in an associated repository. The associated repository is specified using its ARN in CreateCodeReview .
sourcepub fn analysis_types(&self) -> Option<&[AnalysisType]>
pub fn analysis_types(&self) -> Option<&[AnalysisType]>
They types of analysis performed during a repository analysis or a pull request review. You can specify either Security, CodeQuality, or both.
sourceimpl CodeReviewType
impl CodeReviewType
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CodeReviewType
Trait Implementations
sourceimpl Clone for CodeReviewType
impl Clone for CodeReviewType
sourcefn clone(&self) -> CodeReviewType
fn clone(&self) -> CodeReviewType
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for CodeReviewType
impl Debug for CodeReviewType
sourceimpl PartialEq<CodeReviewType> for CodeReviewType
impl PartialEq<CodeReviewType> for CodeReviewType
sourcefn eq(&self, other: &CodeReviewType) -> bool
fn eq(&self, other: &CodeReviewType) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &CodeReviewType) -> bool
fn ne(&self, other: &CodeReviewType) -> bool
This method tests for !=.
impl StructuralPartialEq for CodeReviewType
Auto Trait Implementations
impl RefUnwindSafe for CodeReviewType
impl Send for CodeReviewType
impl Sync for CodeReviewType
impl Unpin for CodeReviewType
impl UnwindSafe for CodeReviewType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more