pub struct ParameterAttribute {
pub key: String,
pub string_value: String,
}
Expand description
The attributes allowed or specified with a parameter object.
Fields§
§key: String
The field identifier.
string_value: String
The field value, expressed as a String.
Trait Implementations§
Source§impl Clone for ParameterAttribute
impl Clone for ParameterAttribute
Source§fn clone(&self) -> ParameterAttribute
fn clone(&self) -> ParameterAttribute
Returns a duplicate 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 ParameterAttribute
impl Debug for ParameterAttribute
Source§impl Default for ParameterAttribute
impl Default for ParameterAttribute
Source§fn default() -> ParameterAttribute
fn default() -> ParameterAttribute
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ParameterAttribute
impl<'de> Deserialize<'de> for ParameterAttribute
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ParameterAttribute
impl PartialEq for ParameterAttribute
Source§impl Serialize for ParameterAttribute
impl Serialize for ParameterAttribute
impl StructuralPartialEq for ParameterAttribute
Auto Trait Implementations§
impl Freeze for ParameterAttribute
impl RefUnwindSafe for ParameterAttribute
impl Send for ParameterAttribute
impl Sync for ParameterAttribute
impl Unpin for ParameterAttribute
impl UnwindSafe for ParameterAttribute
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