pub trait BufMutExt: BufMut {
    type Final: Send + 'static;

    fn finalize(self) -> Self::Final;

    fn put_varint_u64(&mut self, v: u64)
    where
        Self: Sized
, { ... } fn put_varint_i64(&mut self, v: i64)
    where
        Self: Sized
, { ... } }

Required Associated Types§

Required Methods§

Provided Methods§

Implementations on Foreign Types§

Implementors§