pub trait AuthenticatesByFinger: AppiumClientTrait {
    // Provided method
    fn use_finger_print<'life0, 'async_trait>(
        &'life0 self,
        id: u8
    ) -> Pin<Box<dyn Future<Output = Result<(), CmdError>> + Send + 'async_trait>>
       where Self: Sync + 'async_trait,
             'life0: 'async_trait { ... }
}
Expand description

Finger authentication (Android authentication)

Provided Methods§

source

fn use_finger_print<'life0, 'async_trait>( &'life0 self, id: u8 ) -> Pin<Box<dyn Future<Output = Result<(), CmdError>> + Send + 'async_trait>>where Self: Sync + 'async_trait, 'life0: 'async_trait,

Implementors§