Searched defs:ToSql (Results 1 – 5 of 5) sorted by relevance
/external/rust/crates/rusqlite/src/types/ |
D | to_sql.rs | 89 pub trait ToSql { trait 132 impl ToSql for $t { impl 158 impl<T: ?Sized> ToSql for &'_ T impl 185 impl ToSql for [u8] { impl 210 fn is_to_sql<T: ToSql>() {} in is_to_sql()
|
/external/rust/crates/rusqlite/src/ |
D | statement.rs | 51 P::Item: ToSql, in execute() 113 P::Item: ToSql, in insert() 152 P::Item: ToSql, in query() 231 P::Item: ToSql, in query_map() 269 params: &[(&str, &dyn ToSql)], in query_map_named() 289 P::Item: ToSql, in query_and_then() 337 params: &[(&str, &dyn ToSql)], in query_and_then_named() 353 P::Item: ToSql, in exists() 376 P::Item: ToSql, in query_row() 398 pub fn query_row_named<T, F>(&mut self, params: &[(&str, &dyn ToSql)], f: F) -> Result<T> in query_row_named() [all …]
|
D | functions.rs | 346 T: ToSql, in create_scalar_function() 369 T: ToSql, in create_aggregate_function() 392 T: ToSql, in create_window_function() 423 T: ToSql, in create_scalar_function() 431 T: ToSql, in create_scalar_function() 486 T: ToSql, in create_aggregate_function() 517 T: ToSql, in create_window_function() 572 T: ToSql, in call_boxed_step() 618 T: ToSql, in call_boxed_inverse() 657 T: ToSql, in call_boxed_final() [all …]
|
D | pragma.rs | 219 pragma_value: &dyn ToSql, in pragma() 250 pragma_value: &dyn ToSql, in pragma_update() 269 pragma_value: &dyn ToSql, in pragma_update_and_check()
|
D | lib.rs | 491 P::Item: ToSql, in execute() 564 P::Item: ToSql, in query_row() 586 pub fn query_row_named<T, F>(&self, sql: &str, params: &[(&str, &dyn ToSql)], f: F) -> Result<T> in query_row_named() 623 P::Item: ToSql, in query_row_and_then()
|