Enum aws_sigv4::http_request::SignableBody [−][src]
#[non_exhaustive]
pub enum SignableBody<'a> {
Bytes(&'a [u8]),
UnsignedPayload,
Precomputed(String),
}
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.
A body composed of a slice of bytes
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
Tuple Fields of Precomputed
0: String
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more