wiwi::num

Trait IntoNumLossy

Source
pub trait IntoNumLossy<Num>
where Self: Sealed,
{ // Required method fn into_num_lossy(self) -> Num; }

Required Methods§

Source

fn into_num_lossy(self) -> Num

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<NFrom, NInto> IntoNumLossy<NInto> for NFrom
where NFrom: Sealed, NInto: FromNumLossy<NFrom>,