Searched defs:ToSql (Results 1 – 6 of 6) sorted by relevance
| /external/rust/crates/rusqlite/src/ |
| D | params.rs | 217 impl Sealed for &[&dyn ToSql] {} implementation 218 impl Params for &[&dyn ToSql] { implementation 225 impl Sealed for &[(&str, &dyn ToSql)] {} implementation 226 impl Params for &[(&str, &dyn ToSql)] { implementation 437 I::Item: ToSql, in params_from_iter()
|
| D | functions.rs | 407 T: ToSql, in create_scalar_function() 431 T: ToSql, in create_aggregate_function() 456 T: ToSql, in create_window_function() 489 T: ToSql, in create_scalar_function() 497 T: ToSql, in create_scalar_function() 552 T: ToSql, in create_aggregate_function() 583 T: ToSql, in create_window_function() 638 T: ToSql, in call_boxed_step() 685 T: ToSql, in call_boxed_inverse() 723 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 | 353 params: &[(&str, &dyn ToSql)], in query_map_named() 446 params: &[(&str, &dyn ToSql)], in query_and_then_named() 512 pub fn query_row_named<T, F>(&mut self, params: &[(&str, &dyn ToSql)], f: F) -> Result<T> in query_row_named() 584 P::Item: ToSql, in bind_parameters()
|
| D | lib.rs | 689 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()
|