logo
pub trait WithBuilder<P> {
    fn with(param: P) -> Builder<Self>
    where
        Self: Default
; }
Expand description

Trait which generate builder by set the some parameter.

Required Methods

Generate builder for struct

Implementors

Promote the WithBuilder trait for all builders which able to configure specific parameter types.