Struct aws_runtime::auth::sigv4a::SigV4aAuthScheme
source · pub struct SigV4aAuthScheme { /* private fields */ }
Available on crate feature
sigv4a
only.Expand description
SigV4a auth scheme.
Implementations§
Trait Implementations§
source§impl AuthScheme for SigV4aAuthScheme
impl AuthScheme for SigV4aAuthScheme
source§fn scheme_id(&self) -> AuthSchemeId
fn scheme_id(&self) -> AuthSchemeId
Returns the unique identifier associated with this auth scheme. Read more
source§fn identity_resolver(
&self,
identity_resolvers: &dyn GetIdentityResolver,
) -> Option<SharedIdentityResolver>
fn identity_resolver( &self, identity_resolvers: &dyn GetIdentityResolver, ) -> Option<SharedIdentityResolver>
Returns the identity resolver that can resolve an identity for this scheme, if one is available. Read more
source§impl Debug for SigV4aAuthScheme
impl Debug for SigV4aAuthScheme
source§impl Default for SigV4aAuthScheme
impl Default for SigV4aAuthScheme
source§fn default() -> SigV4aAuthScheme
fn default() -> SigV4aAuthScheme
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SigV4aAuthScheme
impl RefUnwindSafe for SigV4aAuthScheme
impl Send for SigV4aAuthScheme
impl Sync for SigV4aAuthScheme
impl Unpin for SigV4aAuthScheme
impl UnwindSafe for SigV4aAuthScheme
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> 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.