trait OptimizerFeatureType {
// Required methods
fn encode(self) -> String;
fn decode(v: &str) -> Self;
}
Expand description
A trait that handles conversion of feature flags.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.