(mut self, a: &mut A)
| 1463 | } |
| 1464 | |
| 1465 | fn array<A: AvroArrayAccess>(mut self, a: &mut A) -> Result<Self::Out, AvroError> { |
| 1466 | (self.conv)(self.inner.array(a)?) |
| 1467 | } |
| 1468 | |
| 1469 | fn map<M: AvroMapAccess>(mut self, m: &mut M) -> Result<Self::Out, AvroError> { |
| 1470 | (self.conv)(self.inner.map(m)?) |
no test coverage detected