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§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for DERWriterSeq<'a>
impl<'a> RefUnwindSafe for DERWriterSeq<'a>
impl<'a> Send for DERWriterSeq<'a>
impl<'a> Sync for DERWriterSeq<'a>
impl<'a> Unpin for DERWriterSeq<'a>
impl<'a> !UnwindSafe for DERWriterSeq<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more