Searched refs:SqliteMallocString (Results 1 – 4 of 4) sorted by relevance
26 pub(crate) struct SqliteMallocString { struct36 impl SqliteMallocString { implementation155 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 …]
9 pub(crate) use sqlite_string::SqliteMallocString;
4 use crate::util::SqliteMallocString;206 pub(crate) fn expanded_sql(&self) -> Option<SqliteMallocString> { in expanded_sql() argument207 unsafe { SqliteMallocString::from_raw(ffi::sqlite3_expanded_sql(self.ptr)) } in expanded_sql()
1315 crate::util::SqliteMallocString::from_str(s).into_raw() in alloc()