Trait GoogleCloudKmsServiceTrait
Source pub trait GoogleCloudKmsServiceTrait: Send + Sync {
// Required methods
fn get_solana_address<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = GoogleCloudKmsResult<String>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn sign_solana<'life0, 'life1, 'async_trait>(
&'life0 self,
message: &'life1 [u8],
) -> Pin<Box<dyn Future<Output = GoogleCloudKmsResult<Vec<u8>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
fn get_evm_address<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = GoogleCloudKmsResult<String>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
fn sign_evm<'life0, 'life1, 'async_trait>(
&'life0 self,
message: &'life1 [u8],
) -> Pin<Box<dyn Future<Output = GoogleCloudKmsResult<Vec<u8>>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait;
}