Struct aws_sdk_codebuild::operation::describe_code_coverages::builders::DescribeCodeCoveragesOutputBuilder
source · #[non_exhaustive]pub struct DescribeCodeCoveragesOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeCodeCoveragesOutput
.
Implementations§
source§impl DescribeCodeCoveragesOutputBuilder
impl DescribeCodeCoveragesOutputBuilder
sourcepub fn next_token(self, input: impl Into<String>) -> Self
pub fn next_token(self, input: impl Into<String>) -> Self
If there are more items to return, this contains a token that is passed to a subsequent call to DescribeCodeCoverages
to retrieve the next set of items.
sourcepub fn set_next_token(self, input: Option<String>) -> Self
pub fn set_next_token(self, input: Option<String>) -> Self
If there are more items to return, this contains a token that is passed to a subsequent call to DescribeCodeCoverages
to retrieve the next set of items.
sourcepub fn get_next_token(&self) -> &Option<String>
pub fn get_next_token(&self) -> &Option<String>
If there are more items to return, this contains a token that is passed to a subsequent call to DescribeCodeCoverages
to retrieve the next set of items.
sourcepub fn code_coverages(self, input: CodeCoverage) -> Self
pub fn code_coverages(self, input: CodeCoverage) -> Self
Appends an item to code_coverages
.
To override the contents of this collection use set_code_coverages
.
An array of CodeCoverage
objects that contain the results.
sourcepub fn set_code_coverages(self, input: Option<Vec<CodeCoverage>>) -> Self
pub fn set_code_coverages(self, input: Option<Vec<CodeCoverage>>) -> Self
An array of CodeCoverage
objects that contain the results.
sourcepub fn get_code_coverages(&self) -> &Option<Vec<CodeCoverage>>
pub fn get_code_coverages(&self) -> &Option<Vec<CodeCoverage>>
An array of CodeCoverage
objects that contain the results.
sourcepub fn build(self) -> DescribeCodeCoveragesOutput
pub fn build(self) -> DescribeCodeCoveragesOutput
Consumes the builder and constructs a DescribeCodeCoveragesOutput
.
Trait Implementations§
source§impl Clone for DescribeCodeCoveragesOutputBuilder
impl Clone for DescribeCodeCoveragesOutputBuilder
source§fn clone(&self) -> DescribeCodeCoveragesOutputBuilder
fn clone(&self) -> DescribeCodeCoveragesOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DescribeCodeCoveragesOutputBuilder
impl Default for DescribeCodeCoveragesOutputBuilder
source§fn default() -> DescribeCodeCoveragesOutputBuilder
fn default() -> DescribeCodeCoveragesOutputBuilder
source§impl PartialEq for DescribeCodeCoveragesOutputBuilder
impl PartialEq for DescribeCodeCoveragesOutputBuilder
source§fn eq(&self, other: &DescribeCodeCoveragesOutputBuilder) -> bool
fn eq(&self, other: &DescribeCodeCoveragesOutputBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeCodeCoveragesOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeCodeCoveragesOutputBuilder
impl RefUnwindSafe for DescribeCodeCoveragesOutputBuilder
impl Send for DescribeCodeCoveragesOutputBuilder
impl Sync for DescribeCodeCoveragesOutputBuilder
impl Unpin for DescribeCodeCoveragesOutputBuilder
impl UnwindSafe for DescribeCodeCoveragesOutputBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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>
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>
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 more