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 2b5c932 commit 3cf4471Copy full SHA for 3cf4471
crates/duckdb/src/row.rs
@@ -58,6 +58,11 @@ impl<'stmt> Rows<'stmt> {
58
59
/// Map over this `Rows`, converting it to a [`Map`], which
60
/// implements `FallibleIterator`.
61
+ ///
62
+ /// **Note:** This method requires the closure to return `duckdb::Result<B>`.
63
+ /// If you need to use custom error types, consider using [`and_then`](Self::and_then)
64
+ /// instead, which allows any error type that implements `From<duckdb::Error>`.
65
66
/// ```rust,no_run
67
/// use fallible_iterator::FallibleIterator;
68
/// # use duckdb::{Result, Statement};
0 commit comments