pub trait TextStreamExt: Stream<Item = String> {
// Provided method
fn coalesce(
self,
min_size: usize,
max_size: usize,
) -> CoalescedTextStream<Self>
where Self: Sized { ... }
}Expand description
Extension trait for text streams.