Product

Trait Product 

Source
pub trait Product<P: Parse>: Sized {
    // Required method
    fn read(p: &mut P) -> Result<Self, (String, usize)>;
}

Required Methods§

Source

fn read(p: &mut P) -> Result<Self, (String, usize)>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§