logo
pub trait BuildWith<T> {
    fn with(param: T) -> Self;
}
Expand description

Powerfull way to configure objects with builder pattern.

Required Methods

Set param

Implementors