Trait num_traits::CastInto [] [src]

pub trait CastInto<T> {
    fn cast_into(self) -> Option<T>;
}

Converts Self into the other type.

Required Methods

fn cast_into(self) -> Option<T>

Casts Self into the type T.

Implementors