#[non_exhaustive]pub struct VectorEnrichmentJobInputConfigBuilder { /* private fields */ }
Expand description
A builder for VectorEnrichmentJobInputConfig
.
Implementations§
source§impl VectorEnrichmentJobInputConfigBuilder
impl VectorEnrichmentJobInputConfigBuilder
sourcepub fn document_type(self, input: VectorEnrichmentJobDocumentType) -> Self
pub fn document_type(self, input: VectorEnrichmentJobDocumentType) -> Self
The input structure that defines the data source file type.
sourcepub fn set_document_type(
self,
input: Option<VectorEnrichmentJobDocumentType>
) -> Self
pub fn set_document_type( self, input: Option<VectorEnrichmentJobDocumentType> ) -> Self
The input structure that defines the data source file type.
sourcepub fn get_document_type(&self) -> &Option<VectorEnrichmentJobDocumentType>
pub fn get_document_type(&self) -> &Option<VectorEnrichmentJobDocumentType>
The input structure that defines the data source file type.
sourcepub fn data_source_config(
self,
input: VectorEnrichmentJobDataSourceConfigInput
) -> Self
pub fn data_source_config( self, input: VectorEnrichmentJobDataSourceConfigInput ) -> Self
The input structure for the data source that represents the storage type of the input data objects.
sourcepub fn set_data_source_config(
self,
input: Option<VectorEnrichmentJobDataSourceConfigInput>
) -> Self
pub fn set_data_source_config( self, input: Option<VectorEnrichmentJobDataSourceConfigInput> ) -> Self
The input structure for the data source that represents the storage type of the input data objects.
sourcepub fn get_data_source_config(
&self
) -> &Option<VectorEnrichmentJobDataSourceConfigInput>
pub fn get_data_source_config( &self ) -> &Option<VectorEnrichmentJobDataSourceConfigInput>
The input structure for the data source that represents the storage type of the input data objects.
sourcepub fn build(self) -> VectorEnrichmentJobInputConfig
pub fn build(self) -> VectorEnrichmentJobInputConfig
Consumes the builder and constructs a VectorEnrichmentJobInputConfig
.
Trait Implementations§
source§impl Clone for VectorEnrichmentJobInputConfigBuilder
impl Clone for VectorEnrichmentJobInputConfigBuilder
source§fn clone(&self) -> VectorEnrichmentJobInputConfigBuilder
fn clone(&self) -> VectorEnrichmentJobInputConfigBuilder
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 Default for VectorEnrichmentJobInputConfigBuilder
impl Default for VectorEnrichmentJobInputConfigBuilder
source§fn default() -> VectorEnrichmentJobInputConfigBuilder
fn default() -> VectorEnrichmentJobInputConfigBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<VectorEnrichmentJobInputConfigBuilder> for VectorEnrichmentJobInputConfigBuilder
impl PartialEq<VectorEnrichmentJobInputConfigBuilder> for VectorEnrichmentJobInputConfigBuilder
source§fn eq(&self, other: &VectorEnrichmentJobInputConfigBuilder) -> bool
fn eq(&self, other: &VectorEnrichmentJobInputConfigBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for VectorEnrichmentJobInputConfigBuilder
Auto Trait Implementations§
impl RefUnwindSafe for VectorEnrichmentJobInputConfigBuilder
impl Send for VectorEnrichmentJobInputConfigBuilder
impl Sync for VectorEnrichmentJobInputConfigBuilder
impl Unpin for VectorEnrichmentJobInputConfigBuilder
impl UnwindSafe for VectorEnrichmentJobInputConfigBuilder
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