pub trait Config: Sized {
    // Provided method
    fn config(self, f: impl FnOnce(&mut Self)) -> Self { ... }
}

Provided Methods§

source

fn config(self, f: impl FnOnce(&mut Self)) -> Self

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> Config for T