[][src]Trait simple_asn1::FromASN1

pub trait FromASN1: Sized {
    type Error: From<ASN1DecodeErr>;
    fn from_asn1(v: &[ASN1Block]) -> Result<(Self, &[ASN1Block]), Self::Error>;
}

A trait defining types that can be decoded from an ASN1Block stream. Any member of this trait is also automatically a member of FromASN1WithBody, as it can obviously just ignore the body.

Associated Types

Loading content...

Required methods

Loading content...

Implementors

Loading content...