Trait ResolveOffset

Source
pub trait ResolveOffset {
    // Required methods
    fn resolve<'a, T>(&self, data: FontData<'a>) -> Result<T, ReadError>
       where T: FontRead<'a>;
    fn resolve_with_args<'a, T>(
        &self,
        data: FontData<'a>,
        args: &<T as ReadArgs>::Args,
    ) -> Result<T, ReadError>
       where T: FontReadWithArgs<'a>;
}
Expand description

A helper trait providing a ‘resolve’ method for offset types

Required Methods§

Source

fn resolve<'a, T>(&self, data: FontData<'a>) -> Result<T, ReadError>
where T: FontRead<'a>,

Source

fn resolve_with_args<'a, T>( &self, data: FontData<'a>, args: &<T as ReadArgs>::Args, ) -> Result<T, ReadError>
where T: FontReadWithArgs<'a>,

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.

Implementors§

Source§

impl<O> ResolveOffset for O
where O: Offset,