pub trait ConfigExt: Sized {
    fn modify<M>(self, modifier: M) -> Modify<M, Self> { ... }
}

Provided Methods

Creates a Config with the specified ModifyHandler

Implementors