Trait postscript::Walue

source ·
pub trait Walue: Sized {
    type Parameter;

    fn read<T: Tape>(tape: &mut T, parameter: Self::Parameter) -> Result<Self>;
}
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