Add/fix rustdoc links

This commit is contained in:
gwenn
2020-11-22 09:34:03 +01:00
parent 7beba0c6eb
commit 6fae5d6641
20 changed files with 90 additions and 90 deletions

View File

@@ -29,7 +29,7 @@ impl<'stmt> Rows<'stmt> {
/// This interface is not compatible with Rust's `Iterator` trait, because
/// the lifetime of the returned row is tied to the lifetime of `self`.
/// This is a fallible "streaming iterator". For a more natural interface,
/// consider using `query_map` or `query_and_then` instead, which
/// consider using [`query_map`](crate::Statement::query_map) or [`query_and_then`](crate::Statement::query_and_then) instead, which
/// return types that implement `Iterator`.
#[allow(clippy::should_implement_trait)] // cannot implement Iterator
#[inline]