| 55 | } |
| 56 | |
| 57 | pub struct UmpTransformStream<S> |
| 58 | where |
| 59 | S: Stream<Item = Result<Bytes, io::Error>> + Unpin, |
| 60 | { |
| 61 | inner: S, |
| 62 | buffer: BytesMut, |
| 63 | found_stream: bool, |
| 64 | remaining: usize, |
| 65 | } |
| 66 | |
| 67 | impl<S> UmpTransformStream<S> |
| 68 | where |
nothing calls this directly
no outgoing calls
no test coverage detected