pub trait Build<T, O> {
// Required method
fn build(&self, data: T) -> O;
}Required Methods§
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".
pub trait Build<T, O> {
// Required method
fn build(&self, data: T) -> O;
}This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".