Trait simple_asn1::FromASN1[][src]

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

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

Required methods

Implementors