#[non_exhaustive]pub struct TableDataImportJobMetadata { /* private fields */ }
Expand description
The metadata associated with the table data import job that was submitted.
Implementations
sourceimpl TableDataImportJobMetadata
impl TableDataImportJobMetadata
sourcepub fn submitter(&self) -> Option<&ImportJobSubmitter>
pub fn submitter(&self) -> Option<&ImportJobSubmitter>
Details about the submitter of the import request.
sourcepub fn submit_time(&self) -> Option<&DateTime>
pub fn submit_time(&self) -> Option<&DateTime>
The timestamp when the job was submitted for import.
sourcepub fn import_options(&self) -> Option<&ImportOptions>
pub fn import_options(&self) -> Option<&ImportOptions>
The options that was specified at the time of submitting the import request.
sourcepub fn data_source(&self) -> Option<&ImportDataSource>
pub fn data_source(&self) -> Option<&ImportDataSource>
The source of the data that was submitted for import.
sourceimpl TableDataImportJobMetadata
impl TableDataImportJobMetadata
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture TableDataImportJobMetadata
.
Trait Implementations
sourceimpl Clone for TableDataImportJobMetadata
impl Clone for TableDataImportJobMetadata
sourcefn clone(&self) -> TableDataImportJobMetadata
fn clone(&self) -> TableDataImportJobMetadata
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for TableDataImportJobMetadata
impl Debug for TableDataImportJobMetadata
sourceimpl PartialEq<TableDataImportJobMetadata> for TableDataImportJobMetadata
impl PartialEq<TableDataImportJobMetadata> for TableDataImportJobMetadata
sourcefn eq(&self, other: &TableDataImportJobMetadata) -> bool
fn eq(&self, other: &TableDataImportJobMetadata) -> bool
impl StructuralPartialEq for TableDataImportJobMetadata
Auto Trait Implementations
impl RefUnwindSafe for TableDataImportJobMetadata
impl Send for TableDataImportJobMetadata
impl Sync for TableDataImportJobMetadata
impl Unpin for TableDataImportJobMetadata
impl UnwindSafe for TableDataImportJobMetadata
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more