Trait derive_sql::traits::ToParam

source ·
pub trait ToParam {
    // Required method
    fn to_param(&self) -> Result<Param>;
}

Required Methods§

Implementations on Foreign Types§

source§

impl ToParam for bool

source§

impl ToParam for f64

source§

impl ToParam for i64

source§

impl ToParam for u32

source§

impl ToParam for String

source§

impl ToParam for Vec<u8>

source§

impl ToParam for NaiveDate

source§

impl ToParam for NaiveDateTime

source§

impl<T> ToParam for Option<T>
where T: ToParam,

Implementors§