#[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 ==.