pub trait Configurable<T> { // Required method fn configure(&mut self, config: T) -> Result<()>; }
Configure with settings