pub struct ParameterOption {
pub name: String,
pub value: Value,
}
Expand description
Option for select/dropdown parameters
Fields§
§name: String
Display text
value: Value
Actual value
Trait Implementations§
Source§impl Clone for ParameterOption
impl Clone for ParameterOption
Source§fn clone(&self) -> ParameterOption
fn clone(&self) -> ParameterOption
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 ParameterOption
impl Debug for ParameterOption
Source§impl<'de> Deserialize<'de> for ParameterOption
impl<'de> Deserialize<'de> for ParameterOption
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 ParameterOption
impl PartialEq for ParameterOption
Source§impl Serialize for ParameterOption
impl Serialize for ParameterOption
impl StructuralPartialEq for ParameterOption
Auto Trait Implementations§
impl Freeze for ParameterOption
impl RefUnwindSafe for ParameterOption
impl Send for ParameterOption
impl Sync for ParameterOption
impl Unpin for ParameterOption
impl UnwindSafe for ParameterOption
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