pub trait Value: Sized {
// Required method
fn read<T: Tape>(tape: &mut T) -> Result<Self>;
}Expand description
A type that can be read.
Required Methods§
Object Safety§
This trait is not object safe.
pub trait Value: Sized {
// Required method
fn read<T: Tape>(tape: &mut T) -> Result<Self>;
}A type that can be read.