Trait postscript::Walue [] [src]

pub trait Walue: 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 Walue for Vec<u8>
[src]

[src]

Implementors