#[non_exhaustive]pub struct IdMappingJobMetrics {
pub input_records: Option<i32>,
pub total_records_processed: Option<i32>,
pub records_not_processed: Option<i32>,
pub total_mapped_records: Option<i32>,
pub total_mapped_source_records: Option<i32>,
pub total_mapped_target_records: Option<i32>,
}
Expand description
An object containing InputRecords
, RecordsNotProcessed
, TotalRecordsProcessed
, TotalMappedRecords
, TotalMappedSourceRecords
, and TotalMappedTargetRecords
.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.input_records: Option<i32>
The total number of records that were input for processing.
total_records_processed: Option<i32>
The total number of records that were processed.
records_not_processed: Option<i32>
The total number of records that did not get processed.
total_mapped_records: Option<i32>
The total number of records that were mapped.
total_mapped_source_records: Option<i32>
The total number of mapped source records.
total_mapped_target_records: Option<i32>
The total number of distinct mapped target records.
Implementations§
source§impl IdMappingJobMetrics
impl IdMappingJobMetrics
sourcepub fn input_records(&self) -> Option<i32>
pub fn input_records(&self) -> Option<i32>
The total number of records that were input for processing.
sourcepub fn total_records_processed(&self) -> Option<i32>
pub fn total_records_processed(&self) -> Option<i32>
The total number of records that were processed.
sourcepub fn records_not_processed(&self) -> Option<i32>
pub fn records_not_processed(&self) -> Option<i32>
The total number of records that did not get processed.
sourcepub fn total_mapped_records(&self) -> Option<i32>
pub fn total_mapped_records(&self) -> Option<i32>
The total number of records that were mapped.
sourcepub fn total_mapped_source_records(&self) -> Option<i32>
pub fn total_mapped_source_records(&self) -> Option<i32>
The total number of mapped source records.
sourcepub fn total_mapped_target_records(&self) -> Option<i32>
pub fn total_mapped_target_records(&self) -> Option<i32>
The total number of distinct mapped target records.
source§impl IdMappingJobMetrics
impl IdMappingJobMetrics
sourcepub fn builder() -> IdMappingJobMetricsBuilder
pub fn builder() -> IdMappingJobMetricsBuilder
Creates a new builder-style object to manufacture IdMappingJobMetrics
.
Trait Implementations§
source§impl Clone for IdMappingJobMetrics
impl Clone for IdMappingJobMetrics
source§fn clone(&self) -> IdMappingJobMetrics
fn clone(&self) -> IdMappingJobMetrics
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for IdMappingJobMetrics
impl Debug for IdMappingJobMetrics
source§impl PartialEq for IdMappingJobMetrics
impl PartialEq for IdMappingJobMetrics
impl StructuralPartialEq for IdMappingJobMetrics
Auto Trait Implementations§
impl Freeze for IdMappingJobMetrics
impl RefUnwindSafe for IdMappingJobMetrics
impl Send for IdMappingJobMetrics
impl Sync for IdMappingJobMetrics
impl Unpin for IdMappingJobMetrics
impl UnwindSafe for IdMappingJobMetrics
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