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§

source§

impl<T> ParsableInput for Twhere T: Clone + Compare<&'static [u8]> + InputIter<Item = u8> + InputLength + InputTake + PartialEq<T> + Slice<RangeFrom<usize>>,