pub trait DefaultGivenOnlineProblem<T, P, C, D>{
// Required method
fn default(o: &Online<P>) -> Self;
}
Expand description
Gives type a default value which may depend on an online problem instance.
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.