[][src]Struct swagger::auth::MakeAllowAllAuthenticator

pub struct MakeAllowAllAuthenticator<T, RC> where
    RC: RcBound,
    RC::Result: Send + 'static, 
{ /* fields omitted */ }

Dummy Authenticator, that blindly inserts authorization data, allowing all access to an endpoint with the specified subject.

Methods

impl<T, RC> MakeAllowAllAuthenticator<T, RC> where
    RC: RcBound,
    RC::Result: Send + 'static, 
[src]

pub fn new<U: Into<String>>(inner: T, subject: U) -> Self[src]

Create a middleware that authorizes with the configured subject.

Trait Implementations

impl<T: Debug, RC: Debug> Debug for MakeAllowAllAuthenticator<T, RC> where
    RC: RcBound,
    RC::Result: Send + 'static, 
[src]

impl<'a, T, SC, RC, E, ME, S, OB, F> MakeService<&'a SC> for MakeAllowAllAuthenticator<T, RC> where
    RC: RcBound,
    RC::Result: Send + 'static,
    T: MakeService<&'a SC, Error = E, MakeError = ME, Service = S, ReqBody = ContextualPayload<Body, RC::Result>, ResBody = OB, Future = F>,
    S: Service<Error = E, ReqBody = ContextualPayload<Body, RC::Result>, ResBody = OB> + 'static,
    ME: ErrorBound,
    E: ErrorBound,
    F: Future<Item = S, Error = ME> + Send + 'static,
    S::Future: Send,
    OB: Payload
[src]

type ReqBody = ContextualPayload<Body, RC>

The Payload body of the http::Request.

type ResBody = OB

The Payload body of the http::Response.

type Error = E

The error type that can be returned by Services.

type MakeError = ME

The error type that can be returned when creating a new Service.

type Service = AllowAllAuthenticator<S, RC>

The resolved Service from new_service().

type Future = Box<dyn Future<Item = Self::Service, Error = ME> + Send>

The future returned from new_service of a Service.

Auto Trait Implementations

impl<T, RC> RefUnwindSafe for MakeAllowAllAuthenticator<T, RC> where
    RC: RefUnwindSafe,
    T: RefUnwindSafe

impl<T, RC> Send for MakeAllowAllAuthenticator<T, RC> where
    T: Send

impl<T, RC> Sync for MakeAllowAllAuthenticator<T, RC> where
    RC: Sync,
    T: Sync

impl<T, RC> Unpin for MakeAllowAllAuthenticator<T, RC> where
    RC: Unpin,
    T: Unpin

impl<T, RC> UnwindSafe for MakeAllowAllAuthenticator<T, RC> where
    RC: UnwindSafe,
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<N, Ctx> MakeService<Ctx> for N where
    N: NewService
[src]

type ReqBody = <N as NewService>::ReqBody

The Payload body of the http::Request.

type ResBody = <N as NewService>::ResBody

The Payload body of the http::Response.

type Error = <N as NewService>::Error

The error type that can be returned by Services.

type Service = <N as NewService>::Service

The resolved Service from new_service().

type Future = <N as NewService>::Future

The future returned from new_service of a Service.

type MakeError = <N as NewService>::InitError

The error type that can be returned when creating a new Service.

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.