(
self,
_r: &mut R,
d: D,
)
| 1853 | |
| 1854 | impl<'a> AvroDeserializer for &'a Value { |
| 1855 | fn deserialize<R: AvroRead, D: AvroDecode>( |
| 1856 | self, |
| 1857 | _r: &mut R, |
| 1858 | d: D, |
| 1859 | ) -> Result<D::Out, AvroError> { |
| 1860 | give_value(d, self) |
| 1861 | } |
| 1862 | } |
| 1863 | |
| 1864 | pub fn give_value<D: AvroDecode>(d: D, v: &Value) -> Result<D::Out, AvroError> { |
no test coverage detected