pub struct DERWriterSet<'a> { /* private fields */ }
Expand description

A writer object that accepts ASN.1 values.

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

Examples

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

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

Performs the conversion.

Performs the conversion.

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.