Trait DecodeChoice

Source
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§

Source

fn from_tag<D: Decoder>(decoder: &mut D, tag: Tag) -> Result<Self, D::Error>

Decode the choice value based on the provided tag.

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.

Implementors§