#[non_exhaustive]pub struct CustomValuesConfigurationBuilder { /* private fields */ }Expand description
A builder for CustomValuesConfiguration.
Implementations§
source§impl CustomValuesConfigurationBuilder
impl CustomValuesConfigurationBuilder
sourcepub fn include_null_value(self, input: bool) -> Self
pub fn include_null_value(self, input: bool) -> Self
Includes the null value in custom action parameter values.
sourcepub fn set_include_null_value(self, input: Option<bool>) -> Self
pub fn set_include_null_value(self, input: Option<bool>) -> Self
Includes the null value in custom action parameter values.
sourcepub fn custom_values(self, input: CustomParameterValues) -> Self
pub fn custom_values(self, input: CustomParameterValues) -> Self
The customized parameter values.
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
sourcepub fn set_custom_values(self, input: Option<CustomParameterValues>) -> Self
pub fn set_custom_values(self, input: Option<CustomParameterValues>) -> Self
The customized parameter values.
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
sourcepub fn build(self) -> CustomValuesConfiguration
pub fn build(self) -> CustomValuesConfiguration
Consumes the builder and constructs a CustomValuesConfiguration.
Trait Implementations§
source§impl Clone for CustomValuesConfigurationBuilder
impl Clone for CustomValuesConfigurationBuilder
source§fn clone(&self) -> CustomValuesConfigurationBuilder
fn clone(&self) -> CustomValuesConfigurationBuilder
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 CustomValuesConfigurationBuilder
impl Default for CustomValuesConfigurationBuilder
source§fn default() -> CustomValuesConfigurationBuilder
fn default() -> CustomValuesConfigurationBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<CustomValuesConfigurationBuilder> for CustomValuesConfigurationBuilder
impl PartialEq<CustomValuesConfigurationBuilder> for CustomValuesConfigurationBuilder
source§fn eq(&self, other: &CustomValuesConfigurationBuilder) -> bool
fn eq(&self, other: &CustomValuesConfigurationBuilder) -> bool
This method tests for
self and other values to be equal, and is used
by ==.