pub trait ParsableInput: Clone + Compare<&'static [u8]> + InputIter<Item = u8> + InputLength + InputTake + Slice<RangeFrom<usize>> + PartialEq<Self> { }
Expand description

Trait used to ensure we can properly parse input

Implementors