Struct yasna::DERWriterSeq [] [src]

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

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

Methods

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

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

Generates a new DERWriter.

Trait Implementations

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

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

Formats the value using the given formatter.