Struct der_parser::DerObjectHeader[][src]

pub struct DerObjectHeader {
    pub class: u8,
    pub structured: u8,
    pub tag: u8,
    pub len: u64,
}

Fields

Methods

impl DerObjectHeader
[src]

Test if object class is Universal

Test if object class is Application

Test if object class is Context-specific

Test if object class is Private

Test if object is primitive

Test if object is constructed

Trait Implementations

impl Clone for DerObjectHeader
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for DerObjectHeader
[src]

impl Debug for DerObjectHeader
[src]

Formats the value using the given formatter. Read more

impl PartialEq for DerObjectHeader
[src]

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

This method tests for !=.

Auto Trait Implementations