pub trait GroupEncoder {
type Entry<'a>
where Self: 'a;
// Required methods
fn count(&self) -> u16;
fn next_entry(&mut self) -> Option<Self::Entry<'_>>;
}Expand description
Trait for group encoders.
Group encoders handle the encoding of repeating groups within messages.
Required Associated Types§
Required Methods§
Sourcefn next_entry(&mut self) -> Option<Self::Entry<'_>>
fn next_entry(&mut self) -> Option<Self::Entry<'_>>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.