[][src]Trait c3p0_pool_sqlite::rusqlite::types::ToSql

pub trait ToSql {
    fn to_sql(&self) -> Result<ToSqlOutput, Error>;
}

A trait for types that can be converted into SQLite values.

Required methods

Loading content...

Implementations on Foreign Types

impl ToSql for i64[src]

impl ToSql for isize[src]

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

impl ToSql for u16[src]

impl ToSql for i32[src]

impl ToSql for String[src]

impl ToSql for i8[src]

impl ToSql for bool[src]

impl ToSql for str[src]

impl<'_, T> ToSql for &'_ T where
    T: ToSql + ?Sized
[src]

impl ToSql for u8[src]

impl<'_> ToSql for Cow<'_, str>[src]

impl ToSql for [u8][src]

impl ToSql for i16[src]

impl ToSql for Value[src]

Serialize JSON Value to text.

impl ToSql for Timespec[src]

impl ToSql for u32[src]

impl ToSql for Vec<u8>[src]

impl ToSql for f64[src]

Loading content...

Implementors

impl ToSql for c3p0_pool_sqlite::rusqlite::types::Value[src]

impl ToSql for Null[src]

impl<'_> ToSql for ToSqlOutput<'_>[src]

Loading content...