Trait async_utils::stream::WithTag
source · 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
.