pub struct DERWriterSeq<'a> {
    pub buf: &'a mut Vec<u8>,
}
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]);

Fields

buf: &'a mut Vec<u8>

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.