Struct yasna::DERWriterSeq

source ·
pub struct DERWriterSeq<'a> { /* private fields */ }
Expand description

A writer object that accepts ASN.1 values.

The main source of this object is the write_sequence method from DERWriter.

Examples

use yasna;
let der = yasna::construct_der(|writer| {
    writer.write_sequence(|writer : &mut yasna::DERWriterSeq| {
        writer.next().write_i64(10);
        writer.next().write_bool(true);
    })
});
assert_eq!(der, vec![48, 6, 2, 1, 10, 1, 1, 255]);

Implementations§

Generates a new DERWriter.

Trait Implementations§

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.