pub trait ComputableType: SealedComputableTypewhere
Self: Sized,{
// Required method
fn new_functions(
computer: CustomStatisticComputer<Self>,
printer: CustomStatisticPrinter<Self>,
) -> ComputedStatisticFunctions;
}Required Methods§
fn new_functions( computer: CustomStatisticComputer<Self>, printer: CustomStatisticPrinter<Self>, ) -> ComputedStatisticFunctions
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.