#[non_exhaustive]pub struct SqlApplicationConfigurationBuilder { /* private fields */ }Expand description
A builder for SqlApplicationConfiguration.
Implementations§
source§impl SqlApplicationConfigurationBuilder
impl SqlApplicationConfigurationBuilder
sourcepub fn inputs(self, input: Input) -> Self
pub fn inputs(self, input: Input) -> Self
Appends an item to inputs.
To override the contents of this collection use set_inputs.
The array of Input objects describing the input streams used by the application.
sourcepub fn set_inputs(self, input: Option<Vec<Input>>) -> Self
pub fn set_inputs(self, input: Option<Vec<Input>>) -> Self
The array of Input objects describing the input streams used by the application.
sourcepub fn get_inputs(&self) -> &Option<Vec<Input>>
pub fn get_inputs(&self) -> &Option<Vec<Input>>
The array of Input objects describing the input streams used by the application.
sourcepub fn outputs(self, input: Output) -> Self
pub fn outputs(self, input: Output) -> Self
Appends an item to outputs.
To override the contents of this collection use set_outputs.
The array of Output objects describing the destination streams used by the application.
sourcepub fn set_outputs(self, input: Option<Vec<Output>>) -> Self
pub fn set_outputs(self, input: Option<Vec<Output>>) -> Self
The array of Output objects describing the destination streams used by the application.
sourcepub fn get_outputs(&self) -> &Option<Vec<Output>>
pub fn get_outputs(&self) -> &Option<Vec<Output>>
The array of Output objects describing the destination streams used by the application.
sourcepub fn reference_data_sources(self, input: ReferenceDataSource) -> Self
pub fn reference_data_sources(self, input: ReferenceDataSource) -> Self
Appends an item to reference_data_sources.
To override the contents of this collection use set_reference_data_sources.
The array of ReferenceDataSource objects describing the reference data sources used by the application.
sourcepub fn set_reference_data_sources(
self,
input: Option<Vec<ReferenceDataSource>>
) -> Self
pub fn set_reference_data_sources( self, input: Option<Vec<ReferenceDataSource>> ) -> Self
The array of ReferenceDataSource objects describing the reference data sources used by the application.
sourcepub fn get_reference_data_sources(&self) -> &Option<Vec<ReferenceDataSource>>
pub fn get_reference_data_sources(&self) -> &Option<Vec<ReferenceDataSource>>
The array of ReferenceDataSource objects describing the reference data sources used by the application.
sourcepub fn build(self) -> SqlApplicationConfiguration
pub fn build(self) -> SqlApplicationConfiguration
Consumes the builder and constructs a SqlApplicationConfiguration.
Trait Implementations§
source§impl Clone for SqlApplicationConfigurationBuilder
impl Clone for SqlApplicationConfigurationBuilder
source§fn clone(&self) -> SqlApplicationConfigurationBuilder
fn clone(&self) -> SqlApplicationConfigurationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for SqlApplicationConfigurationBuilder
impl Default for SqlApplicationConfigurationBuilder
source§fn default() -> SqlApplicationConfigurationBuilder
fn default() -> SqlApplicationConfigurationBuilder
source§impl PartialEq for SqlApplicationConfigurationBuilder
impl PartialEq for SqlApplicationConfigurationBuilder
source§fn eq(&self, other: &SqlApplicationConfigurationBuilder) -> bool
fn eq(&self, other: &SqlApplicationConfigurationBuilder) -> bool
self and other values to be equal, and is used
by ==.