[−][src]Trait rusqlite::ToSql
A trait for types that can be converted into SQLite values.
Required methods
fn to_sql(&self) -> Result<ToSqlOutput>
Implementations on Foreign Types
impl ToSql for Timespec
[src][−]
fn to_sql(&self) -> Result<ToSqlOutput>
[src]
impl ToSql for Box<dyn ToSql>
[src][−]
fn to_sql(&self) -> Result<ToSqlOutput>
[src]
impl ToSql for bool
[src][−]
fn to_sql(&self) -> Result<ToSqlOutput>
[src]
impl ToSql for i8
[src][−]
fn to_sql(&self) -> Result<ToSqlOutput>
[src]
impl ToSql for i16
[src][−]
fn to_sql(&self) -> Result<ToSqlOutput>
[src]
impl ToSql for i32
[src][−]
fn to_sql(&self) -> Result<ToSqlOutput>
[src]
impl ToSql for i64
[src][−]
fn to_sql(&self) -> Result<ToSqlOutput>
[src]
impl ToSql for isize
[src][−]
fn to_sql(&self) -> Result<ToSqlOutput>
[src]
impl ToSql for u8
[src][−]
fn to_sql(&self) -> Result<ToSqlOutput>
[src]
impl ToSql for u16
[src][−]
fn to_sql(&self) -> Result<ToSqlOutput>
[src]
impl ToSql for u32
[src][−]
fn to_sql(&self) -> Result<ToSqlOutput>
[src]
impl ToSql for f64
[src][−]
fn to_sql(&self) -> Result<ToSqlOutput>
[src]
impl<'_, T: ?Sized> ToSql for &'_ T where
T: ToSql,
[src][−]
T: ToSql,