Struct yasna::DERWriterSet [] [src]

pub struct DERWriterSet<'a> {
    // some fields omitted
}

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]);

Methods

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

fn next<'b>(&'b mut self) -> DERWriter<'b>

Generates a new DERWriter.

Trait Implementations

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

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.