pub trait NumericCast: Sized {
    fn numeric_cast<T: NumericCastFrom<Self>>(self) -> T { ... }
}

Provided Methods

Implementations on Foreign Types

Implementors