#[non_exhaustive]pub struct GetAnalyzerOutputBuilder { /* private fields */ }
Expand description
A builder for GetAnalyzerOutput
.
Implementations§
source§impl GetAnalyzerOutputBuilder
impl GetAnalyzerOutputBuilder
sourcepub fn analyzer(self, input: AnalyzerSummary) -> Self
pub fn analyzer(self, input: AnalyzerSummary) -> Self
An AnalyzerSummary
object that contains information about the analyzer.
sourcepub fn set_analyzer(self, input: Option<AnalyzerSummary>) -> Self
pub fn set_analyzer(self, input: Option<AnalyzerSummary>) -> Self
An AnalyzerSummary
object that contains information about the analyzer.
sourcepub fn get_analyzer(&self) -> &Option<AnalyzerSummary>
pub fn get_analyzer(&self) -> &Option<AnalyzerSummary>
An AnalyzerSummary
object that contains information about the analyzer.
sourcepub fn build(self) -> GetAnalyzerOutput
pub fn build(self) -> GetAnalyzerOutput
Consumes the builder and constructs a GetAnalyzerOutput
.
Trait Implementations§
source§impl Clone for GetAnalyzerOutputBuilder
impl Clone for GetAnalyzerOutputBuilder
source§fn clone(&self) -> GetAnalyzerOutputBuilder
fn clone(&self) -> GetAnalyzerOutputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for GetAnalyzerOutputBuilder
impl Debug for GetAnalyzerOutputBuilder
source§impl Default for GetAnalyzerOutputBuilder
impl Default for GetAnalyzerOutputBuilder
source§fn default() -> GetAnalyzerOutputBuilder
fn default() -> GetAnalyzerOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetAnalyzerOutputBuilder
impl PartialEq for GetAnalyzerOutputBuilder
source§fn eq(&self, other: &GetAnalyzerOutputBuilder) -> bool
fn eq(&self, other: &GetAnalyzerOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GetAnalyzerOutputBuilder
Auto Trait Implementations§
impl Freeze for GetAnalyzerOutputBuilder
impl RefUnwindSafe for GetAnalyzerOutputBuilder
impl Send for GetAnalyzerOutputBuilder
impl Sync for GetAnalyzerOutputBuilder
impl Unpin for GetAnalyzerOutputBuilder
impl UnwindSafe for GetAnalyzerOutputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.