#[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>
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§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.