pub trait Buildable<T> {
// Required method
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§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.