ComputableType

Trait ComputableType 

Source
pub trait ComputableType: SealedComputableType
where Self: Sized,
{ // Required method fn new_functions( computer: CustomStatisticComputer<Self>, printer: CustomStatisticPrinter<Self>, ) -> ComputedStatisticFunctions; }

Required Methods§

Source

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.

Implementations on Foreign Types§

Source§

impl ComputableType for f64

Source§

fn new_functions( computer: CustomStatisticComputer<Self>, printer: CustomStatisticPrinter<Self>, ) -> ComputedStatisticFunctions

Source§

impl ComputableType for i64

Source§

fn new_functions( computer: CustomStatisticComputer<Self>, printer: CustomStatisticPrinter<Self>, ) -> ComputedStatisticFunctions

Source§

impl ComputableType for usize

Source§

fn new_functions( computer: CustomStatisticComputer<Self>, printer: CustomStatisticPrinter<Self>, ) -> ComputedStatisticFunctions

Implementors§