pub trait TaggedField: Parse {
type Tag: Tag;
// Required method
fn tag<B>(parsed: &Self::Output<B>) -> Self::Tag
where B: SplitByteSlice;
}Required Associated Types§
Required Methods§
fn tag<B>(parsed: &Self::Output<B>) -> Self::Tagwhere
B: SplitByteSlice,
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.