#[non_exhaustive]pub struct IdMappingJobMetricsBuilder { /* private fields */ }
Expand description
A builder for IdMappingJobMetrics
.
Implementations§
source§impl IdMappingJobMetricsBuilder
impl IdMappingJobMetricsBuilder
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 build(self) -> IdMappingJobMetrics
pub fn build(self) -> IdMappingJobMetrics
Consumes the builder and constructs a IdMappingJobMetrics
.
Trait Implementations§
source§impl Clone for IdMappingJobMetricsBuilder
impl Clone for IdMappingJobMetricsBuilder
source§fn clone(&self) -> IdMappingJobMetricsBuilder
fn clone(&self) -> IdMappingJobMetricsBuilder
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 IdMappingJobMetricsBuilder
impl Debug for IdMappingJobMetricsBuilder
source§impl Default for IdMappingJobMetricsBuilder
impl Default for IdMappingJobMetricsBuilder
source§fn default() -> IdMappingJobMetricsBuilder
fn default() -> IdMappingJobMetricsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for IdMappingJobMetricsBuilder
impl PartialEq for IdMappingJobMetricsBuilder
source§fn eq(&self, other: &IdMappingJobMetricsBuilder) -> bool
fn eq(&self, other: &IdMappingJobMetricsBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for IdMappingJobMetricsBuilder
Auto Trait Implementations§
impl Freeze for IdMappingJobMetricsBuilder
impl RefUnwindSafe for IdMappingJobMetricsBuilder
impl Send for IdMappingJobMetricsBuilder
impl Sync for IdMappingJobMetricsBuilder
impl Unpin for IdMappingJobMetricsBuilder
impl UnwindSafe for IdMappingJobMetricsBuilder
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.