pub trait Encode {
    // Required method
    fn encode<B: BufMut>(&self, buf: &mut B);
}

Required Methods§

source

fn encode<B: BufMut>(&self, buf: &mut B)

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Encode for u8

source§

fn encode<B: BufMut>(&self, buf: &mut B)

Implementors§