#[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 records that were input for processing.
sourcepub fn set_input_records(self, input: Option<i32>) -> Self
pub fn set_input_records(self, input: Option<i32>) -> Self
The total number of records that were input for processing.
sourcepub fn get_input_records(&self) -> &Option<i32>
pub fn get_input_records(&self) -> &Option<i32>
The total number of records that were input for processing.
sourcepub fn total_records_processed(self, input: i32) -> Self
pub fn total_records_processed(self, input: i32) -> Self
The total number of records that were 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 that were processed.
sourcepub fn get_total_records_processed(&self) -> &Option<i32>
pub fn get_total_records_processed(&self) -> &Option<i32>
The total number of records that were 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 total_mapped_records(self, input: i32) -> Self
pub fn total_mapped_records(self, input: i32) -> Self
The total number of records that were mapped.
sourcepub fn set_total_mapped_records(self, input: Option<i32>) -> Self
pub fn set_total_mapped_records(self, input: Option<i32>) -> Self
The total number of records that were mapped.
sourcepub fn get_total_mapped_records(&self) -> &Option<i32>
pub fn get_total_mapped_records(&self) -> &Option<i32>
The total number of records that were mapped.
sourcepub fn total_mapped_source_records(self, input: i32) -> Self
pub fn total_mapped_source_records(self, input: i32) -> Self
The total number of mapped source records.
sourcepub fn set_total_mapped_source_records(self, input: Option<i32>) -> Self
pub fn set_total_mapped_source_records(self, input: Option<i32>) -> Self
The total number of mapped source records.
sourcepub fn get_total_mapped_source_records(&self) -> &Option<i32>
pub fn get_total_mapped_source_records(&self) -> &Option<i32>
The total number of mapped source records.
sourcepub fn total_mapped_target_records(self, input: i32) -> Self
pub fn total_mapped_target_records(self, input: i32) -> Self
The total number of distinct mapped target records.
sourcepub fn set_total_mapped_target_records(self, input: Option<i32>) -> Self
pub fn set_total_mapped_target_records(self, input: Option<i32>) -> Self
The total number of distinct mapped target records.
sourcepub fn get_total_mapped_target_records(&self) -> &Option<i32>
pub fn get_total_mapped_target_records(&self) -> &Option<i32>
The total number of distinct mapped target records.
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
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
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
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
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)
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