Trait amq_protocol::frame::parsing::traits::ParsableInput

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

Trait used to ensure we can properly parse input

Object Safety§

This trait is not object safe.

Implementors§

source§

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