Trait postscript::Value [] [src]

pub trait Value: Sized {
    fn read<T: Tape>(_: &mut T) -> Result<Self>;
}

A type that can be read.

Required Methods

Read a value.

Implementations on Foreign Types

impl Value for u8
[src]

[src]

impl Value for u16
[src]

[src]

impl Value for u32
[src]

[src]

impl Value for [u8; 3]
[src]

[src]

Implementors