pub trait DynConfigurationKey {
    type Value: DeserializeOwned + Serialize;

    // Required method
    fn path(&self) -> &'static str;
}

Required Associated Types§

Required Methods§

source

fn path(&self) -> &'static str

Implementors§