pub trait StyleEditionDefault {
type ConfigType;
// Required method
fn style_edition_default(style_edition: StyleEdition) -> Self::ConfigType;
}
Expand description
Defines the default value for the given style edition
Required Associated Types§
type ConfigType
Required Methods§
fn style_edition_default(style_edition: StyleEdition) -> Self::ConfigType
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.