pub trait Parameter: Parameter {
// Required methods
fn value(&self) -> ParameterValue;
fn id(&self) -> u32;
}Expand description
Parameter trait. It is a sealed trait, as it is supposed to be implemented only within the cples_rs library
pub trait Parameter: Parameter {
// Required methods
fn value(&self) -> ParameterValue;
fn id(&self) -> u32;
}Parameter trait. It is a sealed trait, as it is supposed to be implemented only within the cples_rs library