Struct yasna::DERWriterSet
source · 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§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for DERWriterSet<'a>
impl<'a> RefUnwindSafe for DERWriterSet<'a>
impl<'a> Send for DERWriterSet<'a>
impl<'a> Sync for DERWriterSet<'a>
impl<'a> Unpin for DERWriterSet<'a>
impl<'a> !UnwindSafe for DERWriterSet<'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