pub trait RangeStream: Stream + RangeStreamOnce { }
Expand description

A RangeStream is an extension of Stream which allows for zero copy parsing.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<Input> RangeStream for Input
where Input: RangeStreamOnce + Stream,