#[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 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>
Creates a shared type from an unshared type.