We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfe98e6 commit af7a0b3Copy full SHA for af7a0b3
crates/duckdb/src/lib.rs
@@ -542,6 +542,7 @@ impl Connection {
542
///
543
/// Will return `Err` if the underlying DuckDB call fails.
544
#[inline]
545
+ #[allow(clippy::result_large_err)]
546
pub fn close(self) -> Result<(), (Connection, Error)> {
547
let r = self.db.borrow_mut().close();
548
r.map_err(move |err| (self, err))
0 commit comments