Struct der_parser::DerObject [] [src]

pub struct DerObject<'a> {
    pub class: u8,
    pub structured: u8,
    pub tag: u8,
    pub content: DerObjectContent<'a>,
}

Fields

Methods

impl<'a> DerObject<'a>
[src]

[src]

[src]

Build a DerObject from its content, using default flags (no class, correct tag, and structured flag set only for Set and Sequence)

[src]

[src]

[src]

[src]

[src]

[src]

[src]

[src]

impl<'a> DerObject<'a>
[src]

[src]

impl<'a> DerObject<'a>
[src]

[src]

Trait Implementations

impl<'a> Debug for DerObject<'a>
[src]

[src]

Formats the value using the given formatter.

impl<'a> Clone for DerObject<'a>
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl<'a> PartialEq for DerObject<'a>
[src]

[src]

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

[src]

This method tests for !=.

impl<'a> From<Oid> for DerObject<'a>
[src]

[src]

Performs the conversion.

impl<'a> IntoIterator for DerObject<'a>
[src]

The type of the elements being iterated over.

Which kind of iterator are we turning this into?

[src]

Creates an iterator from a value. Read more

impl<'a> Index<usize> for DerObject<'a>
[src]

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.