Struct aws_sig_auth::signer::RequestConfig
source · pub struct RequestConfig<'a> {
pub request_ts: SystemTime,
pub region: &'a SigningRegion,
pub service: &'a SigningService,
pub payload_override: Option<&'a SignableBody<'static>>,
}
Expand description
Signing Configuration for an individual Request
These fields may vary on a per-request basis
Fields§
§request_ts: SystemTime
§region: &'a SigningRegion
§service: &'a SigningService
§payload_override: Option<&'a SignableBody<'static>>
Trait Implementations§
source§impl<'a> Clone for RequestConfig<'a>
impl<'a> Clone for RequestConfig<'a>
source§fn clone(&self) -> RequestConfig<'a>
fn clone(&self) -> RequestConfig<'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> PartialEq for RequestConfig<'a>
impl<'a> PartialEq for RequestConfig<'a>
source§fn eq(&self, other: &RequestConfig<'a>) -> bool
fn eq(&self, other: &RequestConfig<'a>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<'a> Eq for RequestConfig<'a>
impl<'a> StructuralEq for RequestConfig<'a>
impl<'a> StructuralPartialEq for RequestConfig<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for RequestConfig<'a>
impl<'a> Send for RequestConfig<'a>
impl<'a> Sync for RequestConfig<'a>
impl<'a> Unpin for RequestConfig<'a>
impl<'a> UnwindSafe for RequestConfig<'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<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.