pub trait TaggedField: Parse {
    type Tag: Tag;

    // Required method
    fn tag<B>(parsed: &Self::Output<B>) -> Self::Tag
       where B: ByteSlice;
}

Required Associated Types§

Required Methods§

source

fn tag<B>(parsed: &Self::Output<B>) -> Self::Tag
where B: ByteSlice,

Object Safety§

This trait is not object safe.

Implementors§