Trait asn_codecs::aper::AperCodec[][src]

pub trait AperCodec {
    type Output;
    fn decode(data: &mut AperCodecData) -> Result<Self::Output, AperCodecError>;
}
Expand description

Trait representing an ‘APER Codec’.

This ‘crate’ is to be derived by any struct or enum representing an ASN.1 Type.

Associated Types

Required methods

Implementors