Trait truetype::Walue

source ·
pub trait Walue<'l>: Sized {
    type Parameter;

    fn read<T>(tape: &mut T, parameter: Self::Parameter) -> Result<Self, Error>
    where
        T: Tape
; }
Expand description

A type that can be read given a parameter.

Required Associated Types§

The parameter type.

Required Methods§

Read a value.

Implementations on Foreign Types§

Implementors§