mirror of
https://github.com/isar/rusqlite.git
synced 2025-08-19 20:39:44 +08:00
clippy::use_self
This commit is contained in:
@@ -27,8 +27,8 @@ fn test_dummy_module() -> rusqlite::Result<()> {
|
||||
_: &mut VTabConnection,
|
||||
_aux: Option<&()>,
|
||||
_args: &[&[u8]],
|
||||
) -> Result<(String, DummyTab)> {
|
||||
let vtab = DummyTab {
|
||||
) -> Result<(String, Self)> {
|
||||
let vtab = Self {
|
||||
base: sqlite3_vtab::default(),
|
||||
};
|
||||
Ok(("CREATE TABLE x(value)".to_owned(), vtab))
|
||||
|
Reference in New Issue
Block a user