(self, items: S)
| 72 | Input: TryStream<Ok: Buf> + Send; |
| 73 | |
| 74 | fn decode<T, S>(self, items: S) -> Self::Output<T, S> |
| 75 | where |
| 76 | T: serde::de::DeserializeOwned, |
| 77 | S: TryStream<Ok: Buf> + Send, |
| 78 | { |
| 79 | self.decoder.decode(items) |
| 80 | } |
| 81 | } |
no outgoing calls