pub trait AvroMapAccess {
type R: AvroRead;
// Required method
fn next_entry<'b>(
&'b mut self,
) -> Result<Option<(String, AvroFieldAccess<'b, Self::R>)>, AvroError>;
}Required Associated Types§
Required Methods§
fn next_entry<'b>( &'b mut self, ) -> Result<Option<(String, AvroFieldAccess<'b, Self::R>)>, AvroError>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".