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
Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".