Trait WalletExperimentalDecrypt
Source pub trait WalletExperimentalDecrypt {
type Output: ExperimentalDecryptOutput;
// Required methods
fn decrypt_many<'life0, 'async_trait>(
&'life0 self,
props: Vec<ExperimentalDecryptProps>,
) -> Pin<Box<dyn Future<Output = Result<Vec<Self::Output>, WalletError>> + 'async_trait>>
where 'life0: 'async_trait,
Self: 'async_trait;
fn decrypt<'life0, 'async_trait>(
&'life0 self,
props: ExperimentalDecryptProps,
) -> Pin<Box<dyn Future<Output = Result<Self::Output, WalletError>> + 'async_trait>>
where 'life0: 'async_trait,
Self: 'async_trait;
}