Home
last modified time | relevance | path

Searched defs:ToSql (Results 1 – 6 of 6) sorted by relevance

/external/rust/crates/rusqlite/src/
Dparams.rs217 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()
Dfunctions.rs407 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 …]
Dpragma.rs224 V: ToSql, in pragma()
252 ) -> Result<()> in pragma_update()
278 V: ToSql, in pragma_update_and_check()
Dstatement.rs353 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()
Dlib.rs689 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/
Dto_sql.rs99 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()