[][src]Struct authenticator::U2FManager

pub struct U2FManager { /* fields omitted */ }

Methods

impl U2FManager[src]

pub fn new() -> Result<Self>[src]

pub fn register<F>(
    &self,
    flags: RegisterFlags,
    timeout: u64,
    challenge: Vec<u8>,
    application: AppId,
    key_handles: Vec<KeyHandle>,
    callback: F
) -> Result<(), Error> where
    F: FnOnce(Result<RegisterResult, Error>),
    F: Send + 'static, 
[src]

pub fn sign<F>(
    &self,
    flags: SignFlags,
    timeout: u64,
    challenge: Vec<u8>,
    app_ids: Vec<AppId>,
    key_handles: Vec<KeyHandle>,
    callback: F
) -> Result<(), Error> where
    F: FnOnce(Result<SignResult, Error>),
    F: Send + 'static, 
[src]

pub fn cancel(&self) -> Result<(), Error>[src]

Trait Implementations

impl Drop for U2FManager[src]

Auto Trait Implementations

impl Send for U2FManager

impl !Sync for U2FManager

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> Borrow<T> for T where
    T: ?Sized
[src]

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

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