Searched refs:SqliteMallocString (Results 1 – 4 of 4) sorted by relevance
29 pub(crate) struct SqliteMallocString { struct39 impl SqliteMallocString { implementation157 impl Drop for SqliteMallocString { implementation164 impl std::fmt::Debug for SqliteMallocString { implementation170 impl std::fmt::Display for SqliteMallocString { implementation193 let s = SqliteMallocString::from_str(input); in test_from_str()202 let p = SqliteMallocString::from_str("abcd").into_raw(); in test_lossy()206 SqliteMallocString::from_raw(p).unwrap() in test_lossy()216 v.push(SqliteMallocString::from_str(&i.to_string()).into_raw()); in test_into_raw()217 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;207 pub(crate) fn expanded_sql(&self) -> Option<SqliteMallocString> { in expanded_sql() argument208 unsafe { SqliteMallocString::from_raw(ffi::sqlite3_expanded_sql(self.ptr)) } in expanded_sql()
1129 crate::util::SqliteMallocString::from_str(s).into_raw() in alloc()