#[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.
This field is required.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 for CustomValuesConfigurationBuilder
impl PartialEq for CustomValuesConfigurationBuilder
source§fn eq(&self, other: &CustomValuesConfigurationBuilder) -> bool
fn eq(&self, other: &CustomValuesConfigurationBuilder) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CustomValuesConfigurationBuilder
Auto Trait Implementations§
impl Freeze for CustomValuesConfigurationBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
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.