pub trait GenerateBuilder<P, S>: Sized + Calculation<P, S>where
S: UserState,{
// Required method
fn build_for(self, problem: P) -> Builder<Self, P, S, ()>;
}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.