Trait rsfbclient_core::IntoParam [−][src]
Implemented for types that can be sent as parameters
Required methods
fn into_param(self) -> SqlType[src]
Implementations on Foreign Types
impl IntoParam for NaiveDateTime[src]
fn into_param(self) -> SqlType[src]
impl IntoParam for NaiveDate[src]
fn into_param(self) -> SqlType[src]
impl IntoParam for NaiveTime[src]
fn into_param(self) -> SqlType[src]
impl IntoParam for Vec<u8>[src]
fn into_param(self) -> SqlType[src]
impl IntoParam for String[src]
fn into_param(self) -> SqlType[src]
impl IntoParam for i64[src]
fn into_param(self) -> SqlType[src]
impl IntoParam for bool[src]
fn into_param(self) -> SqlType[src]
impl IntoParam for i32[src]
fn into_param(self) -> SqlType[src]
impl IntoParam for u32[src]
fn into_param(self) -> SqlType[src]
impl IntoParam for i16[src]
fn into_param(self) -> SqlType[src]
impl IntoParam for u16[src]
fn into_param(self) -> SqlType[src]
impl IntoParam for i8[src]
fn into_param(self) -> SqlType[src]
impl IntoParam for u8[src]
fn into_param(self) -> SqlType[src]
impl IntoParam for f64[src]
fn into_param(self) -> SqlType[src]
impl IntoParam for f32[src]
fn into_param(self) -> SqlType[src]
impl<T> IntoParam for Option<T> where
T: IntoParam, [src]
T: IntoParam,
Implements IntoParam for all nullable variants
fn into_param(self) -> SqlType[src]
impl<T, B: ?Sized> IntoParam for &B where
B: ToOwned<Owned = T>,
T: Borrow<B> + IntoParam, [src]
B: ToOwned<Owned = T>,
T: Borrow<B> + IntoParam,
Implements IntoParam for all borrowed variants (&str, Cow and etc)