#[non_exhaustive]pub struct ParameterNameValueBuilder { /* private fields */ }
Expand description
A builder for ParameterNameValue
.
Implementations§
source§impl ParameterNameValueBuilder
impl ParameterNameValueBuilder
sourcepub fn parameter_name(self, input: impl Into<String>) -> Self
pub fn parameter_name(self, input: impl Into<String>) -> Self
The name of the parameter.
sourcepub fn set_parameter_name(self, input: Option<String>) -> Self
pub fn set_parameter_name(self, input: Option<String>) -> Self
The name of the parameter.
sourcepub fn get_parameter_name(&self) -> &Option<String>
pub fn get_parameter_name(&self) -> &Option<String>
The name of the parameter.
sourcepub fn parameter_value(self, input: impl Into<String>) -> Self
pub fn parameter_value(self, input: impl Into<String>) -> Self
The value of the parameter.
sourcepub fn set_parameter_value(self, input: Option<String>) -> Self
pub fn set_parameter_value(self, input: Option<String>) -> Self
The value of the parameter.
sourcepub fn get_parameter_value(&self) -> &Option<String>
pub fn get_parameter_value(&self) -> &Option<String>
The value of the parameter.
sourcepub fn build(self) -> ParameterNameValue
pub fn build(self) -> ParameterNameValue
Consumes the builder and constructs a ParameterNameValue
.
Trait Implementations§
source§impl Clone for ParameterNameValueBuilder
impl Clone for ParameterNameValueBuilder
source§fn clone(&self) -> ParameterNameValueBuilder
fn clone(&self) -> ParameterNameValueBuilder
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 Debug for ParameterNameValueBuilder
impl Debug for ParameterNameValueBuilder
source§impl Default for ParameterNameValueBuilder
impl Default for ParameterNameValueBuilder
source§fn default() -> ParameterNameValueBuilder
fn default() -> ParameterNameValueBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for ParameterNameValueBuilder
impl PartialEq for ParameterNameValueBuilder
source§fn eq(&self, other: &ParameterNameValueBuilder) -> bool
fn eq(&self, other: &ParameterNameValueBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ParameterNameValueBuilder
Auto Trait Implementations§
impl RefUnwindSafe for ParameterNameValueBuilder
impl Send for ParameterNameValueBuilder
impl Sync for ParameterNameValueBuilder
impl Unpin for ParameterNameValueBuilder
impl UnwindSafe for ParameterNameValueBuilder
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> 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>
Creates a shared type from an unshared type.