Enum aws_sigv4::http_request::SignatureLocation
source · #[non_exhaustive]
pub enum SignatureLocation {
Headers,
QueryParams,
}
Expand description
Where to place signing values in the HTTP request
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.
Headers
Place the signature in the request headers
QueryParams
Place the signature in the request query parameters
Trait Implementations§
source§impl Clone for SignatureLocation
impl Clone for SignatureLocation
source§fn clone(&self) -> SignatureLocation
fn clone(&self) -> SignatureLocation
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 Debug for SignatureLocation
impl Debug for SignatureLocation
source§impl PartialEq<SignatureLocation> for SignatureLocation
impl PartialEq<SignatureLocation> for SignatureLocation
source§fn eq(&self, other: &SignatureLocation) -> bool
fn eq(&self, other: &SignatureLocation) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for SignatureLocation
impl Eq for SignatureLocation
impl StructuralEq for SignatureLocation
impl StructuralPartialEq for SignatureLocation
Auto Trait Implementations§
impl RefUnwindSafe for SignatureLocation
impl Send for SignatureLocation
impl Sync for SignatureLocation
impl Unpin for SignatureLocation
impl UnwindSafe for SignatureLocation
Blanket Implementations§
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.