(reader: &mut R)
| 74 | fn string(&mut self, key: &'static str) -> AvroResult<Option<String>> { |
| 75 | match self.remove(key) { |
| 76 | Some(Value::String(s)) => Ok(Some(s)), |
| 77 | Some(value) => Err(Details::GetStringInvalidType(key, value.description()).into()), |
| 78 | None => Ok(None), |
| 79 | } |
| 80 | } |
| 81 |
no test coverage detected