Enum simple_asn1::ASN1Block[][src]

pub enum ASN1Block {
Show variants Boolean(usizebool), Integer(usizeBigInt), BitString(usizeusizeVec<u8>), OctetString(usizeVec<u8>), Null(usize), ObjectIdentifier(usizeOID), UTF8String(usizeString), PrintableString(usizeString), TeletexString(usizeString), IA5String(usizeString), UTCTime(usizeDateTime<Utc>), GeneralizedTime(usizeDateTime<Utc>), UniversalString(usizeString), BMPString(usizeString), Sequence(usizeVec<ASN1Block>), Set(usizeVec<ASN1Block>), Explicit(ASN1ClassusizeBigUintBox<ASN1Block>), Unknown(ASN1ClassboolusizeBigUintVec<u8>),
}
Expand description

A primitive block from ASN.1.

Primitive blocks all contain the offset from the beginning of the parsed document, followed by whatever data is associated with the block. The latter should be fairly self-explanatory, so let’s discuss the offset.

The offset is only valid during the reading process. It is ignored for the purposes of encoding blocks into their binary form. It is also ignored for the purpose of comparisons via ==. It is included entirely to support the parsing of things like X509 certificates, in which it is necessary to know when particular blocks end.

The ASN1Class of explicitly tagged blocks is either Application, ContextSpecific or Private. Unknown can have any class. The class of all other variants is Universal.

Variants

Boolean(usizebool)
Integer(usizeBigInt)
BitString(usizeusizeVec<u8>)
OctetString(usizeVec<u8>)
Null(usize)
ObjectIdentifier(usizeOID)
UTF8String(usizeString)
PrintableString(usizeString)
TeletexString(usizeString)
IA5String(usizeString)
UTCTime(usizeDateTime<Utc>)
GeneralizedTime(usizeDateTime<Utc>)
UniversalString(usizeString)
BMPString(usizeString)
Sequence(usizeVec<ASN1Block>)

An explicitly tagged block.

The class can be either Application, ContextSpecific or Private. The other parameters are offset, tag and content.

This block is always constructed.

Unknown(ASN1ClassboolusizeBigUintVec<u8>)

An unkown block.

The parameters are class, constructed, offset, tag and content.

Implementations

Get the class associated with the given ASN1Block, regardless of what kind of block it is.

Get the starting offset associated with the given ASN1Block, regardless of what kind of block it is.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.