pub trait StaticAnalyzerConfig {
// Required methods
fn default() -> ValeConfig;
fn ini(self) -> Ini;
fn save(self) -> ValeConfig;
}
Expand description
Trait for static analyzer configuration (e.g. .vale.ini)
Required Methods§
Sourcefn default() -> ValeConfig
fn default() -> ValeConfig
Get default configuration
Sourcefn save(self) -> ValeConfig
fn save(self) -> ValeConfig
Save configuration
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.