pub trait Config: Sized + Schematic {
type Partial: PartialConfig;
const META: Meta;
// Required method
fn from_partial(partial: Self::Partial) -> Self;
}
Expand description
Represents the final configuration, with all settings populated with a value.
Required Associated Types§
type Partial: PartialConfig
Required Associated Constants§
Required Methods§
sourcefn from_partial(partial: Self::Partial) -> Self
fn from_partial(partial: Self::Partial) -> Self
Convert a partial configuration into a full configuration, with all values populated.
Object Safety§
This trait is not object safe.