pub trait ConfigEncryptionTrait {
// Required method
fn encrypt_config<'life0, 'async_trait>(
&'life0 self,
config: BrowserProfileConfig,
) -> Pin<Box<dyn Future<Output = AppResult<String>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}