ParsableInput

Trait ParsableInput 

Source
pub trait ParsableInput:
    Clone
    + Compare<&'static [u8]>
    + Input<Item = u8>
    + PartialEq { }
Expand description

Trait used to ensure we can properly parse input

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§

Source§

impl<T> ParsableInput for T
where T: Clone + Compare<&'static [u8]> + Input<Item = u8> + PartialEq,