[][src]Trait interledger_packet::oer::MutBufOerExt

pub trait MutBufOerExt: BufMut + Sized {
    fn put_var_octet_string<B>(&mut self, buf: B)
    where
        B: IntoBuf
, { ... }
fn put_var_uint(&mut self, uint: u64) { ... } }

Provided methods

fn put_var_octet_string<B>(&mut self, buf: B) where
    B: IntoBuf

Encodes bytes as variable-length octet encoded string and puts it into Buf.

fn put_var_uint(&mut self, uint: u64)

Encodes u64 as variable-length octet encoded unsigned integer and puts it into Buf

Loading content...

Implementors

impl<B: BufMut + Sized> MutBufOerExt for B[src]

Loading content...