#[non_exhaustive]pub struct CustomParameterValuesBuilder { /* private fields */ }
Expand description
A builder for CustomParameterValues
.
Implementations§
source§impl CustomParameterValuesBuilder
impl CustomParameterValuesBuilder
sourcepub fn string_values(self, input: impl Into<String>) -> Self
pub fn string_values(self, input: impl Into<String>) -> Self
Appends an item to string_values
.
To override the contents of this collection use set_string_values
.
A list of string-type parameter values.
sourcepub fn set_string_values(self, input: Option<Vec<String>>) -> Self
pub fn set_string_values(self, input: Option<Vec<String>>) -> Self
A list of string-type parameter values.
sourcepub fn get_string_values(&self) -> &Option<Vec<String>>
pub fn get_string_values(&self) -> &Option<Vec<String>>
A list of string-type parameter values.
sourcepub fn integer_values(self, input: i64) -> Self
pub fn integer_values(self, input: i64) -> Self
Appends an item to integer_values
.
To override the contents of this collection use set_integer_values
.
A list of integer-type parameter values.
sourcepub fn set_integer_values(self, input: Option<Vec<i64>>) -> Self
pub fn set_integer_values(self, input: Option<Vec<i64>>) -> Self
A list of integer-type parameter values.
sourcepub fn get_integer_values(&self) -> &Option<Vec<i64>>
pub fn get_integer_values(&self) -> &Option<Vec<i64>>
A list of integer-type parameter values.
sourcepub fn decimal_values(self, input: f64) -> Self
pub fn decimal_values(self, input: f64) -> Self
Appends an item to decimal_values
.
To override the contents of this collection use set_decimal_values
.
A list of decimal-type parameter values.
sourcepub fn set_decimal_values(self, input: Option<Vec<f64>>) -> Self
pub fn set_decimal_values(self, input: Option<Vec<f64>>) -> Self
A list of decimal-type parameter values.
sourcepub fn get_decimal_values(&self) -> &Option<Vec<f64>>
pub fn get_decimal_values(&self) -> &Option<Vec<f64>>
A list of decimal-type parameter values.
sourcepub fn date_time_values(self, input: DateTime) -> Self
pub fn date_time_values(self, input: DateTime) -> Self
Appends an item to date_time_values
.
To override the contents of this collection use set_date_time_values
.
A list of datetime-type parameter values.
sourcepub fn set_date_time_values(self, input: Option<Vec<DateTime>>) -> Self
pub fn set_date_time_values(self, input: Option<Vec<DateTime>>) -> Self
A list of datetime-type parameter values.
sourcepub fn get_date_time_values(&self) -> &Option<Vec<DateTime>>
pub fn get_date_time_values(&self) -> &Option<Vec<DateTime>>
A list of datetime-type parameter values.
sourcepub fn build(self) -> CustomParameterValues
pub fn build(self) -> CustomParameterValues
Consumes the builder and constructs a CustomParameterValues
.
Trait Implementations§
source§impl Clone for CustomParameterValuesBuilder
impl Clone for CustomParameterValuesBuilder
source§fn clone(&self) -> CustomParameterValuesBuilder
fn clone(&self) -> CustomParameterValuesBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CustomParameterValuesBuilder
impl Debug for CustomParameterValuesBuilder
source§impl Default for CustomParameterValuesBuilder
impl Default for CustomParameterValuesBuilder
source§fn default() -> CustomParameterValuesBuilder
fn default() -> CustomParameterValuesBuilder
source§impl PartialEq for CustomParameterValuesBuilder
impl PartialEq for CustomParameterValuesBuilder
source§fn eq(&self, other: &CustomParameterValuesBuilder) -> bool
fn eq(&self, other: &CustomParameterValuesBuilder) -> bool
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CustomParameterValuesBuilder
Auto Trait Implementations§
impl Freeze for CustomParameterValuesBuilder
impl RefUnwindSafe for CustomParameterValuesBuilder
impl Send for CustomParameterValuesBuilder
impl Sync for CustomParameterValuesBuilder
impl Unpin for CustomParameterValuesBuilder
impl UnwindSafe for CustomParameterValuesBuilder
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
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)
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>
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>
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 more