Enum der::Tag [−][src]
#[non_exhaustive]
pub enum Tag {
}Expand description
ASN.1 tags.
Tags are the leading identifier octet of the Tag-Length-Value encoding used by ASN.1 DER and identify the type of the subsequent value.
They are described in X.690 Section 8.1.2: Identifier octets, and structured as follows:
| Class | P/C | Tag Number |
- Bits 8/7:
Class - Bit 6: primitive (0) or constructed (1)
- Bits 5-1: tag number
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
BOOLEAN tag: 0x01
INTEGER tag: 0x02
BIT STRING tag: 0x03
OCTET STRING tag: 0x04
NULL tag: 0x05
OBJECT IDENTIFIER tag: 0x06
UTF8String tag: 0x0C
SEQUENCE tag: 0x10
SET and SET OF tag: 0x11
PrintableString tag: 0x13
IA5String tag: 0x16
UTCTime tag: 0x17
GeneralizedTime tag: 0x18
Application tag.
Tuple Fields of Application
0: TagNumberContext-specific tag.
Tuple Fields of ContextSpecific
0: TagNumberPrivate tag number.
Tuple Fields of Private
0: TagNumberImplementations
Assert that this Tag matches the provided expected tag.
On mismatch, returns an Error with ErrorKind::UnexpectedTag.
Create an Error for an non-canonical value with the ASN.1 type
identified by this tag.
Create an Error for an invalid value with the ASN.1 type identified
by this tag.
Trait Implementations
Compute the length of this value in bytes when encoded as ASN.1 DER.
Encode this value as ASN.1 DER using the provided Encoder.
Encode this value to the provided byte slice, returning a sub-slice containing the encoded message. Read more
alloc only.Encode this message as ASN.1 DER, appending it to the provided byte vector. Read more
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for Tag
impl UnwindSafe for Tag
Blanket Implementations
Mutably borrows from an owned value. Read more
type Output = T
type Output = T
Should always be Self