Struct aws_sdk_devicefarm::types::builders::CountersBuilder
source · #[non_exhaustive]pub struct CountersBuilder { /* private fields */ }Expand description
A builder for Counters.
Implementations§
source§impl CountersBuilder
impl CountersBuilder
sourcepub fn set_passed(self, input: Option<i32>) -> Self
pub fn set_passed(self, input: Option<i32>) -> Self
The number of passed entities.
sourcepub fn get_passed(&self) -> &Option<i32>
pub fn get_passed(&self) -> &Option<i32>
The number of passed entities.
sourcepub fn set_failed(self, input: Option<i32>) -> Self
pub fn set_failed(self, input: Option<i32>) -> Self
The number of failed entities.
sourcepub fn get_failed(&self) -> &Option<i32>
pub fn get_failed(&self) -> &Option<i32>
The number of failed entities.
sourcepub fn set_warned(self, input: Option<i32>) -> Self
pub fn set_warned(self, input: Option<i32>) -> Self
The number of warned entities.
sourcepub fn get_warned(&self) -> &Option<i32>
pub fn get_warned(&self) -> &Option<i32>
The number of warned entities.
sourcepub fn set_errored(self, input: Option<i32>) -> Self
pub fn set_errored(self, input: Option<i32>) -> Self
The number of errored entities.
sourcepub fn get_errored(&self) -> &Option<i32>
pub fn get_errored(&self) -> &Option<i32>
The number of errored entities.
sourcepub fn set_stopped(self, input: Option<i32>) -> Self
pub fn set_stopped(self, input: Option<i32>) -> Self
The number of stopped entities.
sourcepub fn get_stopped(&self) -> &Option<i32>
pub fn get_stopped(&self) -> &Option<i32>
The number of stopped entities.
sourcepub fn set_skipped(self, input: Option<i32>) -> Self
pub fn set_skipped(self, input: Option<i32>) -> Self
The number of skipped entities.
sourcepub fn get_skipped(&self) -> &Option<i32>
pub fn get_skipped(&self) -> &Option<i32>
The number of skipped entities.
Trait Implementations§
source§impl Clone for CountersBuilder
impl Clone for CountersBuilder
source§fn clone(&self) -> CountersBuilder
fn clone(&self) -> CountersBuilder
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 CountersBuilder
impl Debug for CountersBuilder
source§impl Default for CountersBuilder
impl Default for CountersBuilder
source§fn default() -> CountersBuilder
fn default() -> CountersBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for CountersBuilder
impl PartialEq for CountersBuilder
impl StructuralPartialEq for CountersBuilder
Auto Trait Implementations§
impl Freeze for CountersBuilder
impl RefUnwindSafe for CountersBuilder
impl Send for CountersBuilder
impl Sync for CountersBuilder
impl Unpin for CountersBuilder
impl UnwindSafe for CountersBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
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>
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.