Trait WalletExperimentalEncrypt
Source pub trait WalletExperimentalEncrypt {
type Output: ExperimentalEncryptOutput;
// Required methods
fn encrypt_many<'life0, 'async_trait>(
&'life0 self,
props: Vec<ExperimentalEncryptProps>,
) -> Pin<Box<dyn Future<Output = Result<Vec<Self::Output>, WalletError>> + 'async_trait>>
where 'life0: 'async_trait,
Self: 'async_trait;
fn encrypt<'life0, 'async_trait>(
&'life0 self,
props: ExperimentalEncryptProps,
) -> Pin<Box<dyn Future<Output = Result<Self::Output, WalletError>> + 'async_trait>>
where 'life0: 'async_trait,
Self: 'async_trait;
}