Trait tx5::IntoConfig

source ·
pub trait IntoConfig: 'static + Send + Sync {
    // Required method
    fn into_config(self) -> BoxFut<'static, Result<DynConfig>>;
}
Expand description

Indicates a type is capable of being converted into a Config type.

Required Methods§

source

fn into_config(self) -> BoxFut<'static, Result<DynConfig>>

Convert this type into a concrete config type.

Implementors§