#[non_exhaustive]pub struct CreateImportJobInput {
pub import_destination: Option<ImportDestination>,
pub import_data_source: Option<ImportDataSource>,
}Expand description
Represents a request to create an import job from a data source for a data destination.
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.import_destination: Option<ImportDestination>The destination for the import job.
import_data_source: Option<ImportDataSource>The data source for the import job.
Implementations§
source§impl CreateImportJobInput
impl CreateImportJobInput
sourcepub fn import_destination(&self) -> Option<&ImportDestination>
pub fn import_destination(&self) -> Option<&ImportDestination>
The destination for the import job.
sourcepub fn import_data_source(&self) -> Option<&ImportDataSource>
pub fn import_data_source(&self) -> Option<&ImportDataSource>
The data source for the import job.
source§impl CreateImportJobInput
impl CreateImportJobInput
sourcepub fn builder() -> CreateImportJobInputBuilder
pub fn builder() -> CreateImportJobInputBuilder
Creates a new builder-style object to manufacture CreateImportJobInput.
Trait Implementations§
source§impl Clone for CreateImportJobInput
impl Clone for CreateImportJobInput
source§fn clone(&self) -> CreateImportJobInput
fn clone(&self) -> CreateImportJobInput
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 CreateImportJobInput
impl Debug for CreateImportJobInput
source§impl PartialEq for CreateImportJobInput
impl PartialEq for CreateImportJobInput
source§fn eq(&self, other: &CreateImportJobInput) -> bool
fn eq(&self, other: &CreateImportJobInput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for CreateImportJobInput
Auto Trait Implementations§
impl RefUnwindSafe for CreateImportJobInput
impl Send for CreateImportJobInput
impl Sync for CreateImportJobInput
impl Unpin for CreateImportJobInput
impl UnwindSafe for CreateImportJobInput
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.