From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- third_party/rust/http-body/src/empty.rs | 75 +++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 third_party/rust/http-body/src/empty.rs (limited to 'third_party/rust/http-body/src/empty.rs') diff --git a/third_party/rust/http-body/src/empty.rs b/third_party/rust/http-body/src/empty.rs new file mode 100644 index 0000000000..7d63ceb054 --- /dev/null +++ b/third_party/rust/http-body/src/empty.rs @@ -0,0 +1,75 @@ +use super::{Body, SizeHint}; +use bytes::Buf; +use http::HeaderMap; +use std::{ + convert::Infallible, + fmt, + marker::PhantomData, + pin::Pin, + task::{Context, Poll}, +}; + +/// A body that is always empty. +pub struct Empty { + _marker: PhantomData D>, +} + +impl Empty { + /// Create a new `Empty`. + pub fn new() -> Self { + Self::default() + } +} + +impl Body for Empty { + type Data = D; + type Error = Infallible; + + #[inline] + fn poll_data( + self: Pin<&mut Self>, + _cx: &mut Context<'_>, + ) -> Poll>> { + Poll::Ready(None) + } + + #[inline] + fn poll_trailers( + self: Pin<&mut Self>, + _cx: &mut Context<'_>, + ) -> Poll, Self::Error>> { + Poll::Ready(Ok(None)) + } + + fn is_end_stream(&self) -> bool { + true + } + + fn size_hint(&self) -> SizeHint { + SizeHint::with_exact(0) + } +} + +impl fmt::Debug for Empty { + fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { + f.debug_struct("Empty").finish() + } +} + +impl Default for Empty { + fn default() -> Self { + Self { + _marker: PhantomData, + } + } +} + +impl Clone for Empty { + fn clone(&self) -> Self { + Self { + _marker: PhantomData, + } + } +} + +impl Copy for Empty {} -- cgit v1.2.3