pub trait NumericCastFrom<T>: Sized {
    fn numeric_cast_from(val: T) -> Self;
}

Required Methods

Implementations on Foreign Types

Implementors