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
sourceimpl Clone for SignatureLocation
impl Clone for SignatureLocation
sourcefn clone(&self) -> SignatureLocation
fn clone(&self) -> SignatureLocation
Returns a copy of the value. Read more
1.0.0 · sourceconst fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for SignatureLocation
impl Debug for SignatureLocation
sourceimpl PartialEq<SignatureLocation> for SignatureLocation
impl PartialEq<SignatureLocation> for SignatureLocation
sourcefn eq(&self, other: &SignatureLocation) -> bool
fn eq(&self, other: &SignatureLocation) -> bool
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more