#[non_exhaustive]pub struct NoAuthRuntimePlugin(/* private fields */);
Expand description
A RuntimePlugin
that registers a “no auth” identity resolver and auth scheme.
This plugin can be used to disable authentication in certain cases, such as when there is
a Smithy @optionalAuth
trait.
Implementations§
Trait Implementations§
Source§impl Debug for NoAuthRuntimePlugin
impl Debug for NoAuthRuntimePlugin
Source§impl Default for NoAuthRuntimePlugin
impl Default for NoAuthRuntimePlugin
Source§impl RuntimePlugin for NoAuthRuntimePlugin
impl RuntimePlugin for NoAuthRuntimePlugin
Source§fn runtime_components(
&self,
_: &RuntimeComponentsBuilder,
) -> Cow<'_, RuntimeComponentsBuilder>
fn runtime_components( &self, _: &RuntimeComponentsBuilder, ) -> Cow<'_, RuntimeComponentsBuilder>
Returns a
RuntimeComponentsBuilder
to incorporate into the final runtime components. Read moreAuto Trait Implementations§
impl Freeze for NoAuthRuntimePlugin
impl !RefUnwindSafe for NoAuthRuntimePlugin
impl Send for NoAuthRuntimePlugin
impl Sync for NoAuthRuntimePlugin
impl Unpin for NoAuthRuntimePlugin
impl !UnwindSafe for NoAuthRuntimePlugin
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>
Creates a shared type from an unshared type.