[][src]Struct scram::server::ScramServer

pub struct ScramServer<P: AuthenticationProvider> { /* fields omitted */ }

Responds to client authentication challenges. It's the entrypoint for the SCRAM server side implementation.

Methods

impl<P: AuthenticationProvider> ScramServer<P>
[src]

Creates a new ScramServer using the given authentication provider.

Handle a challenge message sent by the client to the server. If the message is well formed, and the requested user exists, then this will progress to the next stage of the authentication process, ServerFirst. Otherwise, it will return an error.

Auto Trait Implementations

impl<P> Send for ScramServer<P> where
    P: Send

impl<P> Sync for ScramServer<P> where
    P: Sync

Blanket Implementations

impl<T> From for T
[src]

Performs the conversion.

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

Performs the conversion.

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Immutably borrows from an owned value. Read more

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

🔬 This is a nightly-only experimental API. (try_from)

Performs the conversion.

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

Mutably borrows from an owned value. Read more

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

🔬 This is a nightly-only experimental API. (get_type_id)

this method will likely be replaced by an associated static

Gets the TypeId of self. Read more