#[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 get_include_null_value(&self) -> &Option<bool>
pub fn get_include_null_value(&self) -> &Option<bool>
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 get_custom_values(&self) -> &Option<CustomParameterValues>
pub fn get_custom_values(&self) -> &Option<CustomParameterValues>
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 ==.impl StructuralPartialEq for CustomValuesConfigurationBuilder
Auto Trait Implementations§
impl RefUnwindSafe for CustomValuesConfigurationBuilder
impl Send for CustomValuesConfigurationBuilder
impl Sync for CustomValuesConfigurationBuilder
impl Unpin for CustomValuesConfigurationBuilder
impl UnwindSafe for CustomValuesConfigurationBuilder
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