#[non_exhaustive]pub struct IdMappingJobMetrics {
pub input_records: Option<i32>,
pub total_records_processed: Option<i32>,
pub records_not_processed: Option<i32>,
}
Expand description
An object containing InputRecords
, TotalRecordsProcessed
, MatchIDs
, and RecordsNotProcessed
.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.input_records: Option<i32>
The total number of input records.
total_records_processed: Option<i32>
The total number of records processed.
records_not_processed: Option<i32>
The total number of records that did not get processed.
Implementations§
source§impl IdMappingJobMetrics
impl IdMappingJobMetrics
sourcepub fn input_records(&self) -> Option<i32>
pub fn input_records(&self) -> Option<i32>
The total number of input records.
sourcepub fn total_records_processed(&self) -> Option<i32>
pub fn total_records_processed(&self) -> Option<i32>
The total number of records 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.
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
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 IdMappingJobMetrics
impl Debug for IdMappingJobMetrics
source§impl PartialEq for IdMappingJobMetrics
impl PartialEq for IdMappingJobMetrics
source§fn eq(&self, other: &IdMappingJobMetrics) -> bool
fn eq(&self, other: &IdMappingJobMetrics) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.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
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.