Type Alias BoxedStream

Source
type BoxedStream<'f> = Box<dyn for<'a> Streamer<'a, Item = (&'a [u8], Output)> + 'f>;
Expand description

Permits stream operations to be hetergeneous with respect to streams.

Aliased Typeยง

struct BoxedStream<'f>(/* private fields */);