Trait ttf_parser::parser::TryNumFrom[][src]

pub trait TryNumFrom<T>: Sized {
    fn try_num_from(_: T) -> Option<Self>;
}
Expand description

Just like TryFrom, but for numeric types not supported by the Rust’s std.

Required methods

Casts between numeric types.

Implementations on Foreign Types

Implementors