Clarify body extractors

This commit is contained in:
David Pedersen
2021-07-10 23:46:14 +02:00
parent 62da1eac00
commit 341ad61240
2 changed files with 7 additions and 0 deletions
+4
View File
@@ -27,6 +27,10 @@ use tower::{BoxError, Layer, Service};
/// produce any useful output, and run the extractor for several handlers
/// without repeating it in the function signature.
///
/// Note that if the extractor consumes the request body, as `String` or
/// [`Bytes`] does, an empty body will be left in its place. Thus wont be
/// accessible to subsequent extractors or handlers.
///
/// # Example
///
/// ```rust