pub trait ParamValue: Debug + ParamClone {
// Provided methods
fn as_char(&self) -> Option<&char> { ... }
fn as_f32(&self) -> Option<&f32> { ... }
fn as_i16(&self) -> Option<&i16> { ... }
fn as_u8(&self) -> Option<&u8> { ... }
}pub trait ParamValue: Debug + ParamClone {
// Provided methods
fn as_char(&self) -> Option<&char> { ... }
fn as_f32(&self) -> Option<&f32> { ... }
fn as_i16(&self) -> Option<&i16> { ... }
fn as_u8(&self) -> Option<&u8> { ... }
}