Enum aws_sigv4::http_request::SignableBody
source · #[non_exhaustive]pub enum SignableBody<'a> {
Bytes(&'a [u8]),
UnsignedPayload,
Precomputed(String),
StreamingUnsignedPayloadTrailer,
}
Available on crate feature
sign-http
only.Expand description
A signable HTTP request body
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Bytes(&'a [u8])
A body composed of a slice of bytes
UnsignedPayload
An unsigned payload
UnsignedPayload is used for streaming requests where the contents of the body cannot be known prior to signing
Precomputed(String)
A precomputed body checksum. The checksum should be a SHA256 checksum of the body,
lowercase hex encoded. Eg:
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855
StreamingUnsignedPayloadTrailer
Set when a streaming body has checksum trailers.
Implementations§
source§impl SignableBody<'_>
impl SignableBody<'_>
sourcepub fn empty() -> SignableBody<'static>
pub fn empty() -> SignableBody<'static>
Create a new empty signable body
Trait Implementations§
source§impl<'a> Clone for SignableBody<'a>
impl<'a> Clone for SignableBody<'a>
source§fn clone(&self) -> SignableBody<'a>
fn clone(&self) -> SignableBody<'a>
Returns a copy 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 SignableBody<'a>
impl<'a> Debug for SignableBody<'a>
source§impl<'a> PartialEq for SignableBody<'a>
impl<'a> PartialEq for SignableBody<'a>
source§fn eq(&self, other: &SignableBody<'a>) -> bool
fn eq(&self, other: &SignableBody<'a>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<'a> Eq for SignableBody<'a>
impl<'a> StructuralPartialEq for SignableBody<'a>
Auto Trait Implementations§
impl<'a> Freeze for SignableBody<'a>
impl<'a> RefUnwindSafe for SignableBody<'a>
impl<'a> Send for SignableBody<'a>
impl<'a> Sync for SignableBody<'a>
impl<'a> Unpin for SignableBody<'a>
impl<'a> UnwindSafe for SignableBody<'a>
Blanket Implementations§
source§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,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§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 moreCreates a shared type from an unshared type.