We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Collected::take_trailers
1 parent b5c769d commit cd52d9dCopy full SHA for cd52d9d
http-body-util/src/collected.rs
@@ -28,6 +28,13 @@ impl<B: Buf> Collected<B> {
28
self.trailers.as_ref()
29
}
30
31
+ /// If there is a trailers frame buffered, remove and return it.
32
+ ///
33
+ /// Returns `None` if the body contained no trailers.
34
+ pub fn take_trailers(&mut self) -> Option<HeaderMap> {
35
+ self.trailers.take()
36
+ }
37
+
38
/// Aggregate this buffered into a [`Buf`].
39
pub fn aggregate(self) -> impl Buf {
40
self.bufs
0 commit comments