[][src]Struct oxide_auth::primitives::registrar::RegisteredClient

pub struct RegisteredClient<'a> { /* fields omitted */ }

Recombines an EncodedClient and a PasswordPolicy to check authentication.

Methods

impl<'a> RegisteredClient<'a>[src]

pub fn new(client: &'a EncodedClient, policy: &'a dyn PasswordPolicy) -> Self[src]

Binds a client and a policy reference together.

The policy should be the same or equivalent to the policy used to create the encoded client data, as otherwise authentication will obviously not work.

pub fn check_authentication(
    &self,
    passphrase: Option<&[u8]>
) -> Result<(), Unspecified>
[src]

Try to authenticate with the client and passphrase. This check will success if either the client is public and no passphrase was provided or if the client is confidential and the passphrase matches.

Auto Trait Implementations

impl<'a> Unpin for RegisteredClient<'a>

impl<'a> Send for RegisteredClient<'a>

impl<'a> Sync for RegisteredClient<'a>

impl<'a> !RefUnwindSafe for RegisteredClient<'a>

impl<'a> !UnwindSafe for RegisteredClient<'a>

Blanket Implementations

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.

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

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

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

impl<T> Erased for T

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> UnsafeAny for T where
    T: Any

impl<T> IntoCollection<T> for T

impl<T, I> AsResult<T, I> for T where
    I: Input,