mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-23 00:39:20 +08:00
Fix clippy warnings
This commit is contained in:
parent
3b0423353d
commit
ce0c9a6344
@ -69,7 +69,7 @@ impl Module for ArrayModule {
|
|||||||
_args: &[&[u8]],
|
_args: &[&[u8]],
|
||||||
) -> Result<(String, ArrayTab)> {
|
) -> Result<(String, ArrayTab)> {
|
||||||
let vtab = ArrayTab {
|
let vtab = ArrayTab {
|
||||||
base: Default::default(),
|
base: ffi::sqlite3_vtab::default(),
|
||||||
};
|
};
|
||||||
Ok(("CREATE TABLE x(value,pointer hidden)".to_owned(), vtab))
|
Ok(("CREATE TABLE x(value,pointer hidden)".to_owned(), vtab))
|
||||||
}
|
}
|
||||||
@ -139,7 +139,7 @@ struct ArrayTabCursor {
|
|||||||
impl ArrayTabCursor {
|
impl ArrayTabCursor {
|
||||||
fn new() -> ArrayTabCursor {
|
fn new() -> ArrayTabCursor {
|
||||||
ArrayTabCursor {
|
ArrayTabCursor {
|
||||||
base: Default::default(),
|
base: ffi::sqlite3_vtab_cursor::default(),
|
||||||
row_id: 0,
|
row_id: 0,
|
||||||
ptr: None,
|
ptr: None,
|
||||||
}
|
}
|
||||||
|
@ -95,7 +95,7 @@ impl Module for CSVModule {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let mut vtab = CSVTab {
|
let mut vtab = CSVTab {
|
||||||
base: Default::default(),
|
base: ffi::sqlite3_vtab::default(),
|
||||||
filename: "".to_owned(),
|
filename: "".to_owned(),
|
||||||
has_headers: false,
|
has_headers: false,
|
||||||
delimiter: b',',
|
delimiter: b',',
|
||||||
@ -294,7 +294,7 @@ struct CSVTabCursor {
|
|||||||
impl CSVTabCursor {
|
impl CSVTabCursor {
|
||||||
fn new(reader: csv::Reader<File>) -> CSVTabCursor {
|
fn new(reader: csv::Reader<File>) -> CSVTabCursor {
|
||||||
CSVTabCursor {
|
CSVTabCursor {
|
||||||
base: Default::default(),
|
base: ffi::sqlite3_vtab_cursor::default(),
|
||||||
reader,
|
reader,
|
||||||
row_number: 0,
|
row_number: 0,
|
||||||
cols: csv::StringRecord::new(),
|
cols: csv::StringRecord::new(),
|
||||||
|
@ -52,7 +52,7 @@ impl Module for Series {
|
|||||||
_args: &[&[u8]],
|
_args: &[&[u8]],
|
||||||
) -> Result<(String, SeriesTab)> {
|
) -> Result<(String, SeriesTab)> {
|
||||||
let vtab = SeriesTab {
|
let vtab = SeriesTab {
|
||||||
base: Default::default(),
|
base: ffi::sqlite3_vtab::default(),
|
||||||
};
|
};
|
||||||
Ok((
|
Ok((
|
||||||
"CREATE TABLE x(value,start hidden,stop hidden,step hidden)".to_owned(),
|
"CREATE TABLE x(value,start hidden,stop hidden,step hidden)".to_owned(),
|
||||||
@ -196,7 +196,7 @@ struct SeriesTabCursor {
|
|||||||
|
|
||||||
impl SeriesTabCursor {
|
impl SeriesTabCursor {
|
||||||
fn new() -> SeriesTabCursor {
|
fn new() -> SeriesTabCursor {
|
||||||
Default::default()
|
SeriesTabCursor::default()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
impl VTabCursor for SeriesTabCursor {
|
impl VTabCursor for SeriesTabCursor {
|
||||||
|
Loading…
Reference in New Issue
Block a user