Trait asn1::SimpleAsn1Readable[][src]

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

    fn parse_data(data: &'a [u8]) -> ParseResult<Self>;
}
Expand description

Types with a fixed-tag that can be parsed as DER ASN.1

Associated Constants

Required methods

Implementations on Foreign Types

Implementors