(&self)
| 48 | /// Whether the serializer and deserializer should indicate to types that the format is human-readable. |
| 49 | // crate-visible for testing |
| 50 | pub(crate) static SERDE_HUMAN_READABLE: OnceLock<bool> = OnceLock::new(); |
| 51 | |
| 52 | pub(crate) trait MapHelper { |
| 53 | fn string(&mut self, key: &'static str) -> AvroResult<Option<String>>; |
| 54 | |
| 55 | fn str(&self, key: &'static str) -> AvroResult<Option<&str>>; |