Enum aws_sig_auth::signer::SignableBody
source · #[non_exhaustive]pub enum SignableBody<'a> {
Bytes(&'a [u8]),
UnsignedPayload,
Precomputed(String),
StreamingUnsignedPayloadTrailer,
}
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.
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> StructuralEq for SignableBody<'a>
impl<'a> StructuralPartialEq for SignableBody<'a>
Auto Trait Implementations§
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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.