pub trait Walue<'l>: Sized {
type Parameter;
// Required method
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§
Required Methods§
Object Safety§
This trait is not object safe.