Trait Primitive

Source
pub trait Primitive {
    // Required method
    fn write_primative(&self, sql: &mut String);
}

Required Methods§

Source

fn write_primative(&self, sql: &mut String)

Implementations on Foreign Types§

Source§

impl Primitive for &str

Source§

fn write_primative(&self, sql: &mut String)

Source§

impl Primitive for i64

Source§

fn write_primative(&self, sql: &mut String)

Source§

impl Primitive for String

Source§

fn write_primative(&self, sql: &mut String)

Source§

impl<P: Primitive> Primitive for Option<P>

Source§

fn write_primative(&self, sql: &mut String)

Implementors§