1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-06-25 22:49:21 +02:00

docs(test): intrgrate cargo-rdme

This commit is contained in:
Rob Ede
2024-06-10 23:23:38 +01:00
parent 0fd85bae2a
commit 4c4c279938
4 changed files with 48 additions and 1 deletions

View File

@ -40,7 +40,7 @@ pub trait FieldReader<'t>: Sized + Any {
/// `next()`/`try_next()`) may panic after the payload is exhausted. If this is a problem for
/// your implementation of this method, you should [`fuse()`] the `Field` first.
///
/// [`fuse()`]: https://docs.rs/futures-util/0.3/futures_util/stream/trait.StreamExt.html#method.fuse
/// [`fuse()`]: futures_util::stream::StreamExt::fuse()
fn read_field(req: &'t HttpRequest, field: Field, limits: &'t mut Limits) -> Self::Future;
}