Trait ttf_parser::parser::FromData
source · pub trait FromData: Sized {
const SIZE: usize;
// Required method
fn parse(data: &[u8]) -> Option<Self>;
}
Expand description
A trait for parsing raw binary data of fixed size.
This is a low-level, internal trait that should not be used directly.
Required Associated Constants§
Required Methods§
Object Safety§
This trait is not object safe.