Skip to main content

der/asn1/
application.rs

1//! Application class field.
2
3use crate::{
4    Choice, Class, Decode, DecodeValue, DerOrd, Encode, EncodeValue, EncodeValueRef, Error, Header,
5    Length, Reader, Tag, TagMode, TagNumber, Tagged, ValueOrd, Writer, asn1::AnyRef,
6    tag::IsConstructed,
7};
8use core::cmp::Ordering;
9
10#[cfg(doc)]
11use crate::ErrorKind;
12
13impl_custom_class!(Application, Application, "APPLICATION", "0b01000000");
14impl_custom_class_ref!(ApplicationRef, Application, "APPLICATION", "0b01000000");