pub trait LookupSubtable<'a>: Sized {
// Required method
fn parse(data: &'a [u8], kind: u16) -> Option<Self>;
}
Expand description
A trait for parsing Lookup subtables.
Internal use only.
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.