supr com
This commit is contained in:
@ -59,11 +59,7 @@ where
|
|||||||
|
|
||||||
fn next(&mut self) -> Option<Self::Item> {
|
fn next(&mut self) -> Option<Self::Item> {
|
||||||
match self.inner.next()? {
|
match self.inner.next()? {
|
||||||
Ok(chunk) => {
|
Ok(chunk) => Some(Ok(self.process_chunk(&chunk))),
|
||||||
// self.process_chunk(&mut chunk);
|
|
||||||
// Some(Ok(chunk))
|
|
||||||
Some(Ok(self.process_chunk(&chunk)))
|
|
||||||
}
|
|
||||||
Err(e) => Some(Err(e)),
|
Err(e) => Some(Err(e)),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user