pub trait Method: Debug {
    // Required method
    fn encrypt<'life0, 'async_trait>(
        &'life0 self,
        uw: Arc<str>,
        vw: Arc<str>
    ) -> Pin<Box<dyn Future<Output = Result<String>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}
Expand description

Defines method encryption trait.

Required Methods§

source

fn encrypt<'life0, 'async_trait>( &'life0 self, uw: Arc<str>, vw: Arc<str> ) -> Pin<Box<dyn Future<Output = Result<String>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§