(stream: S)
| 69 | S: Stream<Item = Result<Bytes, io::Error>> + Unpin, |
| 70 | { |
| 71 | pub fn new(stream: S) -> Self { |
| 72 | UmpTransformStream { |
| 73 | inner: stream, |
| 74 | buffer: BytesMut::new(), |
| 75 | found_stream: false, |
| 76 | remaining: 0, |
| 77 | } |
| 78 | } |
| 79 | } |
| 80 | |
| 81 | impl<S> Stream for UmpTransformStream<S> |
nothing calls this directly
no outgoing calls
no test coverage detected