Trait ibuilder::Buildable[][src]

pub trait Buildable<T> {
    fn builder() -> Builder<T>;
}
Expand description

A type that supports being built using a Builder. Deriving IBuilder an auto-generated implementation for this trait is provided.

Required methods

Create a new Builder<T> for the current type.

Implementors