Trait ttf_parser::tables::math::StreamExt

source ·
trait StreamExt<'a> {
    // Required method
    fn parse_at_offset16<T: FromSlice<'a>>(
        &mut self,
        data: &'a [u8],
    ) -> Option<T>;
}

Required Methods§

source

fn parse_at_offset16<T: FromSlice<'a>>(&mut self, data: &'a [u8]) -> Option<T>

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<'a> StreamExt<'a> for Stream<'a>