[][src]Enum simple_asn1::ASN1Block

pub enum ASN1Block {
    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>),
}

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>)Set(usizeVec<ASN1Block>)Explicit(ASN1ClassusizeBigUintBox<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.

Methods

impl ASN1Block[src]

pub fn class(&self) -> ASN1Class[src]

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

pub fn offset(&self) -> usize[src]

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

Trait Implementations

impl PartialEq<ASN1Block> for ASN1Block[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Clone for ASN1Block[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ASN1Block[src]

Auto Trait Implementations

impl Send for ASN1Block

impl Sync for ASN1Block

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]