pub trait WithTag: Sized {
// Required method
fn tagged<T>(self, tag: T) -> Tagged<T, Self> ⓘ;
}
Expand description
Extension trait to allow for easy creation of a Tagged
stream from a Stream
.
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.