#[non_exhaustive]pub enum PayloadSigningOverride {
UnsignedPayload,
Precomputed(String),
StreamingUnsignedPayloadTrailer,
}Expand description
When present in the config bag, this type will signal that the default payload signing should be overridden.
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.
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 PayloadSigningOverride
impl PayloadSigningOverride
Sourcepub fn unsigned_payload() -> Self
pub fn unsigned_payload() -> Self
Create a payload signing override that will prevent the payload from being signed.
Sourcepub fn to_signable_body(self) -> SignableBody<'static>
pub fn to_signable_body(self) -> SignableBody<'static>
Convert this type into the type used by the signer to determine how a request body should be signed.
Trait Implementations§
Source§impl Clone for PayloadSigningOverride
impl Clone for PayloadSigningOverride
Source§fn clone(&self) -> PayloadSigningOverride
fn clone(&self) -> PayloadSigningOverride
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 Debug for PayloadSigningOverride
impl Debug for PayloadSigningOverride
Source§impl Storable for PayloadSigningOverride
impl Storable for PayloadSigningOverride
Source§type Storer = StoreReplace<PayloadSigningOverride>
type Storer = StoreReplace<PayloadSigningOverride>
Specify how an item is stored in the config bag, e.g.
StoreReplace and StoreAppendAuto Trait Implementations§
impl Freeze for PayloadSigningOverride
impl RefUnwindSafe for PayloadSigningOverride
impl Send for PayloadSigningOverride
impl Sync for PayloadSigningOverride
impl Unpin for PayloadSigningOverride
impl UnwindSafe for PayloadSigningOverride
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§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.