pub trait DecodeChoice: Choice + Decode {
// Required method
fn from_tag<D: Decoder>(decoder: &mut D, tag: Tag) -> Result<Self, D::Error>;
}
Expand description
A CHOICE
value.
Required Methods§
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.