pub struct AllowAllAuthenticatorMakeService<C> { /* private fields */ }
Expand description
Dummy Authenticator, that blindly inserts authorization data, allowing all access to an endpoint with the specified subject.
Implementations§
Trait Implementations§
Source§impl<C: Debug> Debug for AllowAllAuthenticatorMakeService<C>
impl<C: Debug> Debug for AllowAllAuthenticatorMakeService<C>
Source§impl<T, C> Service<T> for AllowAllAuthenticatorMakeService<C>
impl<T, C> Service<T> for AllowAllAuthenticatorMakeService<C>
Source§type Response = AllowAllAuthenticator<T, C>
type Response = AllowAllAuthenticator<T, C>
Responses given by the service.
Source§type Future = Ready<Result<<AllowAllAuthenticatorMakeService<C> as Service<T>>::Response, <AllowAllAuthenticatorMakeService<C> as Service<T>>::Error>>
type Future = Ready<Result<<AllowAllAuthenticatorMakeService<C> as Service<T>>::Response, <AllowAllAuthenticatorMakeService<C> as Service<T>>::Error>>
The future response value.
Auto Trait Implementations§
impl<C> Freeze for AllowAllAuthenticatorMakeService<C>
impl<C> RefUnwindSafe for AllowAllAuthenticatorMakeService<C>where
C: RefUnwindSafe,
impl<C> Send for AllowAllAuthenticatorMakeService<C>where
C: Send,
impl<C> Sync for AllowAllAuthenticatorMakeService<C>where
C: Sync,
impl<C> Unpin for AllowAllAuthenticatorMakeService<C>where
C: Unpin,
impl<C> UnwindSafe for AllowAllAuthenticatorMakeService<C>where
C: UnwindSafe,
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