pub trait IterNameTypes {
// Required method
fn iter_name_types(&self) -> impl Iterator<Item = (&str, &ASN1Type)>;
}
Expand description
Trait shared by ASN1 SET
, SEQUENCE
, AND CHOICE
that allows iterating
over their field types.
Required Methods§
fn iter_name_types(&self) -> impl Iterator<Item = (&str, &ASN1Type)>
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.