pub trait Asn1Choice {
// Required method
fn choice_key<K: TryFrom<u128> + Debug>(&self) -> K
where <K as TryFrom<u128>>::Error: Debug;
}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.