Searched refs:SqliteMallocString (Results 1 – 4 of 4) sorted by relevance
29 pub(crate) struct SqliteMallocString { struct39 impl SqliteMallocString { impl156 impl Drop for SqliteMallocString { implementation162 impl std::fmt::Debug for SqliteMallocString { implementation168 impl std::fmt::Display for SqliteMallocString { implementation191 let s = SqliteMallocString::from_str(input); in test_from_str()200 let p = SqliteMallocString::from_str("abcd").into_raw(); in test_lossy()204 SqliteMallocString::from_raw(p).unwrap() in test_lossy()214 v.push(SqliteMallocString::from_str(&i.to_string()).into_raw()); in test_into_raw()215 v.push(SqliteMallocString::from_str(&format!("abc {} ", i)).into_raw()); in test_into_raw()[all …]
11 pub(crate) use sqlite_string::SqliteMallocString;
5 use crate::util::SqliteMallocString;162 pub(crate) fn expanded_sql(&self) -> Option<SqliteMallocString> { in expanded_sql() argument163 unsafe { SqliteMallocString::from_raw(ffi::sqlite3_expanded_sql(self.ptr)) } in expanded_sql()
1040 crate::util::SqliteMallocString::from_str(s).into_raw() in alloc()