pub struct ParameterNameValue {
pub parameter_name: Option<String>,
pub parameter_value: Option<String>,
}
Expand description
Describes a name-value pair that is used to update the value of a parameter.
Fields§
§parameter_name: Option<String>
The name of the parameter.
parameter_value: Option<String>
The value of the parameter.
Trait Implementations§
Source§impl Clone for ParameterNameValue
impl Clone for ParameterNameValue
Source§fn clone(&self) -> ParameterNameValue
fn clone(&self) -> ParameterNameValue
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 ParameterNameValue
impl Debug for ParameterNameValue
Source§impl Default for ParameterNameValue
impl Default for ParameterNameValue
Source§fn default() -> ParameterNameValue
fn default() -> ParameterNameValue
Returns the “default value” for a type. Read more
Source§impl PartialEq for ParameterNameValue
impl PartialEq for ParameterNameValue
impl StructuralPartialEq for ParameterNameValue
Auto Trait Implementations§
impl Freeze for ParameterNameValue
impl RefUnwindSafe for ParameterNameValue
impl Send for ParameterNameValue
impl Sync for ParameterNameValue
impl Unpin for ParameterNameValue
impl UnwindSafe for ParameterNameValue
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