mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-22 16:29:20 +08:00
Clippy
This commit is contained in:
parent
57db338537
commit
4114c94585
@ -23,10 +23,10 @@ impl FromSql for time::Timespec {
|
||||
match s.len() {
|
||||
19 => time::strptime(s, CURRENT_TIMESTAMP_FMT),
|
||||
_ => time::strptime(s, SQLITE_DATETIME_FMT).or_else(|err| {
|
||||
time::strptime(s, SQLITE_DATETIME_FMT_LEGACY).or_else(|_| Err(err))
|
||||
time::strptime(s, SQLITE_DATETIME_FMT_LEGACY).map_err(|_| err)
|
||||
}),
|
||||
}
|
||||
.or_else(|err| Err(FromSqlError::Other(Box::new(err))))
|
||||
.map_err(|err| FromSqlError::Other(Box::new(err)))
|
||||
})
|
||||
.map(|tm| tm.to_timespec())
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user