Trait ttf_parser::parser::NumFrom
source · pub trait NumFrom<T>: Sized {
// Required method
fn num_from(_: T) -> Self;
}
Expand description
A safe u32 to usize casting.
Rust doesn’t implement From<u32> for usize
,
because it has to support 16 bit targets.
We don’t, so we can allow this.
Required Methods§
Object Safety§
This trait is not object safe.