#[non_exhaustive]pub struct DataSetConfigurationBuilder { /* private fields */ }Expand description
A builder for DataSetConfiguration.
Implementations§
source§impl DataSetConfigurationBuilder
impl DataSetConfigurationBuilder
sourcepub fn placeholder(self, input: impl Into<String>) -> Self
pub fn placeholder(self, input: impl Into<String>) -> Self
Placeholder.
sourcepub fn set_placeholder(self, input: Option<String>) -> Self
pub fn set_placeholder(self, input: Option<String>) -> Self
Placeholder.
sourcepub fn get_placeholder(&self) -> &Option<String>
pub fn get_placeholder(&self) -> &Option<String>
Placeholder.
sourcepub fn data_set_schema(self, input: DataSetSchema) -> Self
pub fn data_set_schema(self, input: DataSetSchema) -> Self
Dataset schema.
sourcepub fn set_data_set_schema(self, input: Option<DataSetSchema>) -> Self
pub fn set_data_set_schema(self, input: Option<DataSetSchema>) -> Self
Dataset schema.
sourcepub fn get_data_set_schema(&self) -> &Option<DataSetSchema>
pub fn get_data_set_schema(&self) -> &Option<DataSetSchema>
Dataset schema.
sourcepub fn column_group_schema_list(self, input: ColumnGroupSchema) -> Self
pub fn column_group_schema_list(self, input: ColumnGroupSchema) -> Self
Appends an item to column_group_schema_list.
To override the contents of this collection use set_column_group_schema_list.
A structure containing the list of column group schemas.
sourcepub fn set_column_group_schema_list(
self,
input: Option<Vec<ColumnGroupSchema>>,
) -> Self
pub fn set_column_group_schema_list( self, input: Option<Vec<ColumnGroupSchema>>, ) -> Self
A structure containing the list of column group schemas.
sourcepub fn get_column_group_schema_list(&self) -> &Option<Vec<ColumnGroupSchema>>
pub fn get_column_group_schema_list(&self) -> &Option<Vec<ColumnGroupSchema>>
A structure containing the list of column group schemas.
sourcepub fn build(self) -> DataSetConfiguration
pub fn build(self) -> DataSetConfiguration
Consumes the builder and constructs a DataSetConfiguration.
Trait Implementations§
source§impl Clone for DataSetConfigurationBuilder
impl Clone for DataSetConfigurationBuilder
source§fn clone(&self) -> DataSetConfigurationBuilder
fn clone(&self) -> DataSetConfigurationBuilder
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 DataSetConfigurationBuilder
impl Debug for DataSetConfigurationBuilder
source§impl Default for DataSetConfigurationBuilder
impl Default for DataSetConfigurationBuilder
source§fn default() -> DataSetConfigurationBuilder
fn default() -> DataSetConfigurationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DataSetConfigurationBuilder
impl PartialEq for DataSetConfigurationBuilder
source§fn eq(&self, other: &DataSetConfigurationBuilder) -> bool
fn eq(&self, other: &DataSetConfigurationBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for DataSetConfigurationBuilder
Auto Trait Implementations§
impl Freeze for DataSetConfigurationBuilder
impl RefUnwindSafe for DataSetConfigurationBuilder
impl Send for DataSetConfigurationBuilder
impl Sync for DataSetConfigurationBuilder
impl Unpin for DataSetConfigurationBuilder
impl UnwindSafe for DataSetConfigurationBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.