Trait truetype::Walue [] [src]

pub trait Walue<'l>: Sized {
    type Parameter;
    fn read<T: Tape>(_: &mut T, _: Self::Parameter) -> Result<Self>;
}

A type that can be read given a parameter.

Associated Types

The parameter type.

Required Methods

Read a value.

Implementations on Foreign Types

impl<V> Walue<'static> for Vec<V> where
    V: Value
[src]

[src]

Implementors