Encode

Trait Encode 

Source
pub trait Encode {
    // Required method
    fn encode(&self, buf: &mut String);
}

Required Methods§

Source

fn encode(&self, buf: &mut String)

Implementations on Foreign Types§

Source§

impl Encode for &str

Source§

fn encode(&self, writer: &mut String)

Source§

impl Encode for bool

Source§

fn encode(&self, writer: &mut String)

Source§

impl Encode for i8

Source§

fn encode(&self, writer: &mut String)

Source§

impl Encode for i16

Source§

fn encode(&self, writer: &mut String)

Source§

impl Encode for i32

Source§

fn encode(&self, writer: &mut String)

Source§

impl Encode for i64

Source§

fn encode(&self, writer: &mut String)

Source§

impl Encode for i128

Source§

fn encode(&self, writer: &mut String)

Source§

impl Encode for isize

Source§

fn encode(&self, writer: &mut String)

Source§

impl Encode for u8

Source§

fn encode(&self, writer: &mut String)

Source§

impl Encode for u16

Source§

fn encode(&self, writer: &mut String)

Source§

impl Encode for u32

Source§

fn encode(&self, writer: &mut String)

Source§

impl Encode for u64

Source§

fn encode(&self, writer: &mut String)

Source§

impl Encode for u128

Source§

fn encode(&self, writer: &mut String)

Source§

impl Encode for usize

Source§

fn encode(&self, writer: &mut String)

Implementors§