Searched defs:ToSql (Results 1 – 6 of 6) sorted by relevance
/external/rust/crates/rusqlite/src/ |
D | params.rs | 183 impl Sealed for &[&dyn ToSql] {} implementation 184 impl Params for &[&dyn ToSql] { implementation 191 impl Sealed for &[(&str, &dyn ToSql)] {} implementation 192 impl Params for &[(&str, &dyn ToSql)] { implementation 337 I::Item: ToSql, in params_from_iter()
|
D | functions.rs | 387 T: ToSql, in create_scalar_function() 411 T: ToSql, in create_aggregate_function() 436 T: ToSql, in create_window_function() 469 T: ToSql, in create_scalar_function() 477 T: ToSql, in create_scalar_function() 532 T: ToSql, in create_aggregate_function() 563 T: ToSql, in create_window_function() 618 T: ToSql, in call_boxed_step() 665 T: ToSql, in call_boxed_inverse() 703 T: ToSql, in call_boxed_final() [all …]
|
D | pragma.rs | 224 V: ToSql, in pragma() 252 ) -> Result<()> in pragma_update() 278 V: ToSql, in pragma_update_and_check()
|
D | statement.rs | 322 params: &[(&str, &dyn ToSql)], in query_map_named() 414 params: &[(&str, &dyn ToSql)], in query_and_then_named() 479 pub fn query_row_named<T, F>(&mut self, params: &[(&str, &dyn ToSql)], f: F) -> Result<T> in query_row_named() 551 P::Item: ToSql, in bind_parameters()
|
D | lib.rs | 646 pub fn query_row_named<T, F>(&self, sql: &str, params: &[(&str, &dyn ToSql)], f: F) -> Result<T> in query_row_named()
|
/external/rust/crates/rusqlite/src/types/ |
D | to_sql.rs | 99 pub trait ToSql { trait 146 impl ToSql for $t { impl 178 impl ToSql for $t { impl 196 impl<T: ?Sized> ToSql for &'_ T impl 227 impl<const N: usize> ToSql for [u8; N] { impl 234 impl ToSql for [u8] { impl 262 fn is_to_sql<T: ToSql>() {} in is_to_sql()
|