Struct aws_sdk_sesv2::types::ExportStatistics
source · #[non_exhaustive]pub struct ExportStatistics {
pub processed_records_count: Option<i32>,
pub exported_records_count: Option<i32>,
}Expand description
Statistics about the execution of an export job.
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.processed_records_count: Option<i32>The number of records that were processed to generate the final export file.
exported_records_count: Option<i32>The number of records that were exported to the final export file.
This value might not be available for all export source types
Implementations§
source§impl ExportStatistics
impl ExportStatistics
sourcepub fn processed_records_count(&self) -> Option<i32>
pub fn processed_records_count(&self) -> Option<i32>
The number of records that were processed to generate the final export file.
sourcepub fn exported_records_count(&self) -> Option<i32>
pub fn exported_records_count(&self) -> Option<i32>
The number of records that were exported to the final export file.
This value might not be available for all export source types
source§impl ExportStatistics
impl ExportStatistics
sourcepub fn builder() -> ExportStatisticsBuilder
pub fn builder() -> ExportStatisticsBuilder
Creates a new builder-style object to manufacture ExportStatistics.
Trait Implementations§
source§impl Clone for ExportStatistics
impl Clone for ExportStatistics
source§fn clone(&self) -> ExportStatistics
fn clone(&self) -> ExportStatistics
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 ExportStatistics
impl Debug for ExportStatistics
source§impl PartialEq for ExportStatistics
impl PartialEq for ExportStatistics
source§fn eq(&self, other: &ExportStatistics) -> bool
fn eq(&self, other: &ExportStatistics) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for ExportStatistics
Auto Trait Implementations§
impl RefUnwindSafe for ExportStatistics
impl Send for ExportStatistics
impl Sync for ExportStatistics
impl Unpin for ExportStatistics
impl UnwindSafe for ExportStatistics
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.