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]

[src]

Test if object class is Universal

[src]

Test if object class is Application

[src]

Test if object class is Context-specific

[src]

Test if object class is Private

[src]

Test if object is primitive

[src]

Test if object is constructed

Trait Implementations

impl Clone for DerObjectHeader
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for DerObjectHeader
[src]

impl Debug for DerObjectHeader
[src]

[src]

Formats the value using the given formatter. Read more

impl PartialEq for DerObjectHeader
[src]

[src]

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

[src]

This method tests for !=.

Auto Trait Implementations