Struct aws_smithy_runtime_api::client::auth::static_resolver::StaticAuthSchemeOptionResolver
source · pub struct StaticAuthSchemeOptionResolver { /* private fields */ }
Expand description
New-type around a Vec<AuthSchemeId>
that implements AuthSchemeOptionResolver
.
Implementations§
source§impl StaticAuthSchemeOptionResolver
impl StaticAuthSchemeOptionResolver
sourcepub fn new(auth_scheme_options: Vec<AuthSchemeId>) -> Self
pub fn new(auth_scheme_options: Vec<AuthSchemeId>) -> Self
Creates a new instance of StaticAuthSchemeOptionResolver
.
Trait Implementations§
source§impl AuthSchemeOptionResolver for StaticAuthSchemeOptionResolver
impl AuthSchemeOptionResolver for StaticAuthSchemeOptionResolver
source§fn resolve_auth_scheme_options(
&self,
_params: &AuthSchemeOptionResolverParams
) -> Result<Cow<'_, [AuthSchemeId]>, BoxError>
fn resolve_auth_scheme_options( &self, _params: &AuthSchemeOptionResolverParams ) -> Result<Cow<'_, [AuthSchemeId]>, BoxError>
Returns a list of available auth scheme options to choose from.
Auto Trait Implementations§
impl RefUnwindSafe for StaticAuthSchemeOptionResolver
impl Send for StaticAuthSchemeOptionResolver
impl Sync for StaticAuthSchemeOptionResolver
impl Unpin for StaticAuthSchemeOptionResolver
impl UnwindSafe for StaticAuthSchemeOptionResolver
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