[][src]Struct tide_http_auth::Authentication

pub struct Authentication<User: Send + Sync + 'static, ImplScheme: Scheme<User>> { /* fields omitted */ }

Middleware for implementing a given Scheme (Basic, Bearer, Jwt) backed by a given Storage backend implemented by the Tide application State.

Implementations

impl<User: Send + Sync + 'static, ImplScheme: Scheme<User>> Authentication<User, ImplScheme>[src]

pub fn new(scheme: ImplScheme) -> Self[src]

Create a new authentication middleware with a scheme.

Examples

use tide_http_auth::{ Authentication, BasicAuthScheme };
Authentication::new(BasicAuthScheme::default());

Trait Implementations

impl<ImplScheme, State, User> Middleware<State> for Authentication<User, ImplScheme> where
    ImplScheme: Scheme<User> + Send + Sync + 'static,
    State: Storage<User, ImplScheme::Request> + Send + Sync + 'static,
    User: Send + Sync + 'static, 
[src]

Auto Trait Implementations

impl<User, ImplScheme> RefUnwindSafe for Authentication<User, ImplScheme> where
    ImplScheme: RefUnwindSafe,
    User: RefUnwindSafe

impl<User, ImplScheme> Send for Authentication<User, ImplScheme> where
    ImplScheme: Send

impl<User, ImplScheme> Sync for Authentication<User, ImplScheme> where
    ImplScheme: Sync

impl<User, ImplScheme> Unpin for Authentication<User, ImplScheme> where
    ImplScheme: Unpin,
    User: Unpin

impl<User, ImplScheme> UnwindSafe for Authentication<User, ImplScheme> where
    ImplScheme: UnwindSafe,
    User: 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<State, F> Middleware<State> for F where
    F: Send + Sync + 'static + for<'a> Fn(Request<State>, Next<'a, State>) -> Pin<Box<dyn Future<Output = Result<Response, Error>> + 'a + Send>>, 
[src]

impl<T> Sealed<T> for T where
    T: ?Sized

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.