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>)
Expand description

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>)
Expand description

An unkown block.

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

Implementations

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 Clone for ASN1Block[src]

fn clone(&self) -> ASN1Block[src]

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

impl Debug for ASN1Block[src]

fn fmt(&self, f: &mut Formatter<'_>) -> Result[src]

Formats the value using the given formatter. Read more

impl PartialEq<ASN1Block> for ASN1Block[src]

fn eq(&self, other: &ASN1Block) -> bool[src]

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

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

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

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

pub fn clone_into(&self, target: &mut T)[src]

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

recently added

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

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

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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

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

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.