pub trait DerTypeView<'a>: Sized {
    const TAG: u8;

    fn object(&self) -> DerObject<'a>;
}
Expand description

A trait for DER type views

Required Associated Constants§

The tag for this type

Required Methods§

Provides raw access to the underlying DerObject

Implementors§