pub trait ConfiguratorSpec {
    type Actor;
    type Context;
    type Container;
    type Data;

    fn constructor(pattern: String) -> Result<Self, ConfigError>
    where
        Self: Sized
; }

Required Associated Types

Required Methods

Implementors