pub enum ParameterValue {
Float {
value: f32,
},
}Expand description
A runtime typed parameter value
Variants§
Trait Implementations§
source§impl Clone for ParameterValue
impl Clone for ParameterValue
source§fn clone(&self) -> ParameterValue
fn clone(&self) -> ParameterValue
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 ParameterValue
impl Debug for ParameterValue
source§impl From<f32> for ParameterValue
impl From<f32> for ParameterValue
source§impl PartialEq<ParameterValue> for ParameterValue
impl PartialEq<ParameterValue> for ParameterValue
source§fn eq(&self, other: &ParameterValue) -> bool
fn eq(&self, other: &ParameterValue) -> bool
This method tests for
self and other values to be equal, and is used
by ==.