pub struct ParameterPart {
pub name: String,
pub value_string: Option<String>,
pub value: Option<Value>,
}Expand description
Part of a multi-part parameter
Fields§
§name: StringName of the part
value_string: Option<String>String value
value: Option<Value>Any other value type
Trait Implementations§
Source§impl Debug for ParameterPart
impl Debug for ParameterPart
Source§impl<'de> Deserialize<'de> for ParameterPart
impl<'de> Deserialize<'de> for ParameterPart
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
Auto Trait Implementations§
impl Freeze for ParameterPart
impl RefUnwindSafe for ParameterPart
impl Send for ParameterPart
impl Sync for ParameterPart
impl Unpin for ParameterPart
impl UnsafeUnpin for ParameterPart
impl UnwindSafe for ParameterPart
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