pub enum HttpRequestBody<'a> {
Empty,
Buffered(&'a [u8]),
Streaming,
}Expand description
The body of an HttpRequest, as seen by authentication.
Variants§
Empty
No body is set.
Buffered(&'a [u8])
An in-memory body.
Streaming
A streaming body, whose bytes are not available for e.g. signing.
Implementations§
Source§impl<'a> HttpRequestBody<'a>
impl<'a> HttpRequestBody<'a>
Sourcepub fn as_bytes(&self) -> Option<&'a [u8]>
pub fn as_bytes(&self) -> Option<&'a [u8]>
The signable bytes: empty for Self::Empty, the buffer for
Self::Buffered, and None for Self::Streaming.
Trait Implementations§
Source§impl<'a> Clone for HttpRequestBody<'a>
impl<'a> Clone for HttpRequestBody<'a>
Source§fn clone(&self) -> HttpRequestBody<'a>
fn clone(&self) -> HttpRequestBody<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for HttpRequestBody<'a>
impl<'a> Debug for HttpRequestBody<'a>
Source§impl<'a> PartialEq for HttpRequestBody<'a>
impl<'a> PartialEq for HttpRequestBody<'a>
impl<'a> Copy for HttpRequestBody<'a>
impl<'a> Eq for HttpRequestBody<'a>
impl<'a> StructuralPartialEq for HttpRequestBody<'a>
Auto Trait Implementations§
impl<'a> Freeze for HttpRequestBody<'a>
impl<'a> RefUnwindSafe for HttpRequestBody<'a>
impl<'a> Send for HttpRequestBody<'a>
impl<'a> Sync for HttpRequestBody<'a>
impl<'a> Unpin for HttpRequestBody<'a>
impl<'a> UnsafeUnpin for HttpRequestBody<'a>
impl<'a> UnwindSafe for HttpRequestBody<'a>
Blanket Implementations§
§impl<U> As for U
impl<U> As for U
§fn as_<T>(self) -> Twhere
T: CastFrom<U>,
fn as_<T>(self) -> Twhere
T: CastFrom<U>,
Casts
self to type T. The semantics of numeric casting with the as operator are followed, so <T as As>::as_::<U> can be used in the same way as T as U for numeric conversions. Read moreSource§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Downcast for Twhere
T: AsAny + ?Sized,
impl<T> Downcast for Twhere
T: AsAny + ?Sized,
§fn downcast_ref<T>(&self) -> Option<&T>where
T: AsAny,
fn downcast_ref<T>(&self) -> Option<&T>where
T: AsAny,
Forward to the method defined on the type
Any.§fn downcast_mut<T>(&mut self) -> Option<&mut T>where
T: AsAny,
fn downcast_mut<T>(&mut self) -> Option<&mut T>where
T: AsAny,
Forward to the method defined on the type
Any.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more