pub(crate) trait Tag {
type Buf: AsRef<[u8]> + AsMut<[u8]> + Debug + Unpin;
const PATTERN: &'static [u8];
// Required method
fn make_buf() -> Self::Buf;
}
Expand description
Tag defines a “trailer tag”: specific, fixed bytes that must follow wire data.
Required Associated Constants§
Required Associated Types§
Required Methods§
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.