Trait rsfbclient::IntoParam[][src]

pub trait IntoParam {
    pub fn into_param(self) -> SqlType;
}

Implemented for types that can be sent as parameters

Required methods

pub fn into_param(self) -> SqlType[src]

Loading content...

Implementations on Foreign Types

impl IntoParam for u32[src]

impl IntoParam for i64[src]

impl<'_, T, B> IntoParam for &'_ B where
    T: Borrow<B> + IntoParam,
    B: ToOwned<Owned = T> + ?Sized
[src]

Implements IntoParam for all borrowed variants (&str, Cow and etc)

impl IntoParam for NaiveDate[src]

impl<T> IntoParam for Option<T> where
    T: IntoParam
[src]

Implements IntoParam for all nullable variants

impl IntoParam for Vec<u8, Global>[src]

impl IntoParam for f32[src]

impl IntoParam for i32[src]

impl IntoParam for bool[src]

impl IntoParam for f64[src]

impl IntoParam for String[src]

impl IntoParam for u8[src]

impl IntoParam for i16[src]

impl IntoParam for u16[src]

impl IntoParam for NaiveTime[src]

impl IntoParam for NaiveDateTime[src]

impl IntoParam for i8[src]

Loading content...

Implementors

Loading content...