#[non_exhaustive]pub struct CompareDataSetsStepInputBuilder { /* private fields */ }
Expand description
A builder for CompareDataSetsStepInput
.
Implementations§
source§impl CompareDataSetsStepInputBuilder
impl CompareDataSetsStepInputBuilder
sourcepub fn source_location(self, input: impl Into<String>) -> Self
pub fn source_location(self, input: impl Into<String>) -> Self
The source location of the compare data sets step input location.
This field is required.sourcepub fn set_source_location(self, input: Option<String>) -> Self
pub fn set_source_location(self, input: Option<String>) -> Self
The source location of the compare data sets step input location.
sourcepub fn get_source_location(&self) -> &Option<String>
pub fn get_source_location(&self) -> &Option<String>
The source location of the compare data sets step input location.
sourcepub fn target_location(self, input: impl Into<String>) -> Self
pub fn target_location(self, input: impl Into<String>) -> Self
The target location of the compare data sets step input location.
This field is required.sourcepub fn set_target_location(self, input: Option<String>) -> Self
pub fn set_target_location(self, input: Option<String>) -> Self
The target location of the compare data sets step input location.
sourcepub fn get_target_location(&self) -> &Option<String>
pub fn get_target_location(&self) -> &Option<String>
The target location of the compare data sets step input location.
sourcepub fn source_data_sets(self, input: DataSet) -> Self
pub fn source_data_sets(self, input: DataSet) -> Self
Appends an item to source_data_sets
.
To override the contents of this collection use set_source_data_sets
.
The source data sets of the compare data sets step input location.
sourcepub fn set_source_data_sets(self, input: Option<Vec<DataSet>>) -> Self
pub fn set_source_data_sets(self, input: Option<Vec<DataSet>>) -> Self
The source data sets of the compare data sets step input location.
sourcepub fn get_source_data_sets(&self) -> &Option<Vec<DataSet>>
pub fn get_source_data_sets(&self) -> &Option<Vec<DataSet>>
The source data sets of the compare data sets step input location.
sourcepub fn target_data_sets(self, input: DataSet) -> Self
pub fn target_data_sets(self, input: DataSet) -> Self
Appends an item to target_data_sets
.
To override the contents of this collection use set_target_data_sets
.
The target data sets of the compare data sets step input location.
sourcepub fn set_target_data_sets(self, input: Option<Vec<DataSet>>) -> Self
pub fn set_target_data_sets(self, input: Option<Vec<DataSet>>) -> Self
The target data sets of the compare data sets step input location.
sourcepub fn get_target_data_sets(&self) -> &Option<Vec<DataSet>>
pub fn get_target_data_sets(&self) -> &Option<Vec<DataSet>>
The target data sets of the compare data sets step input location.
sourcepub fn build(self) -> Result<CompareDataSetsStepInput, BuildError>
pub fn build(self) -> Result<CompareDataSetsStepInput, BuildError>
Consumes the builder and constructs a CompareDataSetsStepInput
.
This method will fail if any of the following fields are not set:
Trait Implementations§
source§impl Clone for CompareDataSetsStepInputBuilder
impl Clone for CompareDataSetsStepInputBuilder
source§fn clone(&self) -> CompareDataSetsStepInputBuilder
fn clone(&self) -> CompareDataSetsStepInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for CompareDataSetsStepInputBuilder
impl Default for CompareDataSetsStepInputBuilder
source§fn default() -> CompareDataSetsStepInputBuilder
fn default() -> CompareDataSetsStepInputBuilder
source§impl PartialEq for CompareDataSetsStepInputBuilder
impl PartialEq for CompareDataSetsStepInputBuilder
source§fn eq(&self, other: &CompareDataSetsStepInputBuilder) -> bool
fn eq(&self, other: &CompareDataSetsStepInputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CompareDataSetsStepInputBuilder
Auto Trait Implementations§
impl Freeze for CompareDataSetsStepInputBuilder
impl RefUnwindSafe for CompareDataSetsStepInputBuilder
impl Send for CompareDataSetsStepInputBuilder
impl Sync for CompareDataSetsStepInputBuilder
impl Unpin for CompareDataSetsStepInputBuilder
impl UnwindSafe for CompareDataSetsStepInputBuilder
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
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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more