Trait schematic::Config

source ·
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§

Required Associated Constants§

Required Methods§

source

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.

Implementors§