Trait FromCoef

Source
pub trait FromCoef {
    // Required method
    fn from_coef(coef: Coef) -> Self;
}

Required Methods§

Source

fn from_coef(coef: Coef) -> Self

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.

Implementors§

Source§

impl<T> FromCoef for T
where T: DefaultRange + ToFloat<Output = float>, float: CastInto<T>,