Trait rocket::mtls::oid::asn1_rs::Choice

pub trait Choice {
    // Required method
    fn can_decode(tag: Tag) -> bool;
}
Available on crate feature mtls only.

Required Methods§

fn can_decode(tag: Tag) -> bool

Is the provided Tag decodable as a variant of this CHOICE?

Object Safety§

This trait is not object safe.

Implementors§

§

impl<T> Choice for Twhere T: Tagged,

This blanket impl allows any Tagged type to function as a Choice with a single alternative.