Struct tide_http_auth::Authentication[][src]

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

#[derive(Clone)]
struct MyUserType {
    username: String
}
use tide_http_auth::{ Authentication, BasicAuthScheme };
Authentication::<MyUserType, BasicAuthScheme>::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> + Clone + 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> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,