mz_dyncfg

Trait ConfigDefault

Source
pub trait ConfigDefault: Clone {
    type ConfigType: ConfigType;

    // Required method
    fn into_config_type(self) -> Self::ConfigType;
}
Expand description

A trait for a type that can be used as a default for a Config.

Required Associated Types§

Required Methods§

Source

fn into_config_type(self) -> Self::ConfigType

Converts into the config type.

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.

Implementations on Foreign Types§

Source§

impl ConfigDefault for &str

Source§

impl<T: ConfigType> ConfigDefault for fn() -> T

Implementors§