pub trait Buildable<'a, P, B> {
// Required method
fn builder(parent: Option<&'a P>) -> B;
}Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
pub trait Buildable<'a, P, B> {
// Required method
fn builder(parent: Option<&'a P>) -> B;
}This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".