pub trait OneofDecode<'de, R>: Sized {
// Required method
fn read_variant(
this: &mut InplaceOption<'_, Self>,
number: u32,
reader: FieldReader<'de, '_, R>,
) -> Result<()>;
}
Expand description
A trait for decoding a oneof
field.
Required Methods§
Sourcefn read_variant(
this: &mut InplaceOption<'_, Self>,
number: u32,
reader: FieldReader<'de, '_, R>,
) -> Result<()>
fn read_variant( this: &mut InplaceOption<'_, Self>, number: u32, reader: FieldReader<'de, '_, R>, ) -> Result<()>
Read the specified variant from the reader.
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.