Struct aws_sdk_entityresolution::types::builders::JobMetricsBuilder
source · #[non_exhaustive]pub struct JobMetricsBuilder { /* private fields */ }
Expand description
A builder for JobMetrics
.
Implementations§
source§impl JobMetricsBuilder
impl JobMetricsBuilder
sourcepub fn input_records(self, input: i32) -> Self
pub fn input_records(self, input: i32) -> Self
The total number of input records.
sourcepub fn set_input_records(self, input: Option<i32>) -> Self
pub fn set_input_records(self, input: Option<i32>) -> Self
The total number of input records.
sourcepub fn get_input_records(&self) -> &Option<i32>
pub fn get_input_records(&self) -> &Option<i32>
The total number of input records.
sourcepub fn total_records_processed(self, input: i32) -> Self
pub fn total_records_processed(self, input: i32) -> Self
The total number of records processed.
sourcepub fn set_total_records_processed(self, input: Option<i32>) -> Self
pub fn set_total_records_processed(self, input: Option<i32>) -> Self
The total number of records processed.
sourcepub fn get_total_records_processed(&self) -> &Option<i32>
pub fn get_total_records_processed(&self) -> &Option<i32>
The total number of records processed.
sourcepub fn records_not_processed(self, input: i32) -> Self
pub fn records_not_processed(self, input: i32) -> Self
The total number of records that did not get processed.
sourcepub fn set_records_not_processed(self, input: Option<i32>) -> Self
pub fn set_records_not_processed(self, input: Option<i32>) -> Self
The total number of records that did not get processed.
sourcepub fn get_records_not_processed(&self) -> &Option<i32>
pub fn get_records_not_processed(&self) -> &Option<i32>
The total number of records that did not get processed.
sourcepub fn set_match_ids(self, input: Option<i32>) -> Self
pub fn set_match_ids(self, input: Option<i32>) -> Self
The total number of matchID
s generated.
sourcepub fn get_match_ids(&self) -> &Option<i32>
pub fn get_match_ids(&self) -> &Option<i32>
The total number of matchID
s generated.
sourcepub fn build(self) -> JobMetrics
pub fn build(self) -> JobMetrics
Consumes the builder and constructs a JobMetrics
.
Trait Implementations§
source§impl Clone for JobMetricsBuilder
impl Clone for JobMetricsBuilder
source§fn clone(&self) -> JobMetricsBuilder
fn clone(&self) -> JobMetricsBuilder
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 JobMetricsBuilder
impl Debug for JobMetricsBuilder
source§impl Default for JobMetricsBuilder
impl Default for JobMetricsBuilder
source§fn default() -> JobMetricsBuilder
fn default() -> JobMetricsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for JobMetricsBuilder
impl PartialEq for JobMetricsBuilder
impl StructuralPartialEq for JobMetricsBuilder
Auto Trait Implementations§
impl Freeze for JobMetricsBuilder
impl RefUnwindSafe for JobMetricsBuilder
impl Send for JobMetricsBuilder
impl Sync for JobMetricsBuilder
impl Unpin for JobMetricsBuilder
impl UnwindSafe for JobMetricsBuilder
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.