[][src]Struct safe_authenticator::Authenticator

pub struct Authenticator {
    pub core_tx: Mutex<AuthMsgTx>,
    // some fields omitted
}

Authenticator instance.

Fields

core_tx: Mutex<AuthMsgTx>

Channel to communicate with the core event loop.

Methods

impl Authenticator[src]

pub fn send<F>(&self, f: F) -> Result<()> where
    F: FnOnce(&AuthClient) -> Option<Box<dyn Future<Item = (), Error = ()>>> + Send + 'static, 
[src]

Send a message to the authenticator event loop.

pub fn create_acc<S, N>(
    locator: S,
    password: S,
    client_id: ClientFullId,
    disconnect_notifier: N
) -> Result<Self, AuthError> where
    N: FnMut() + Send + 'static,
    S: Into<String>, 
[src]

Create a new account.

pub fn login<S, N>(
    locator: S,
    password: S,
    disconnect_notifier: N
) -> Result<Self, AuthError> where
    S: Into<String>,
    N: FnMut() + Send + 'static, 
[src]

Log in to an existing account

pub fn login_impl<F: Send + 'static, N>(
    create_client_fn: F,
    disconnect_notifier: N
) -> Result<Self, AuthError> where
    F: FnOnce(Handle, AuthMsgTx, NetworkTx) -> Result<AuthClient, AuthError>,
    N: FnMut() + Send + 'static, 
[src]

Log in to an existing account.

Trait Implementations

impl Drop for Authenticator[src]

Auto Trait Implementations

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<T> Same<T> for T

type Output = T

Should always be Self

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> UnsafeAny for T where
    T: Any

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