pub trait SecretRouter: Send + Sync {
    // Required method
    fn accept_new_secret_vault<'life0, 'async_trait>(
        &'life0 self,
        secret_vault_id: CanisterId,
        secret_vault_setting: SecretVaultSetting
    ) -> Pin<Box<dyn Future<Output = CanisterResult<ActorResult<()>>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

source

fn accept_new_secret_vault<'life0, 'async_trait>( &'life0 self, secret_vault_id: CanisterId, secret_vault_setting: SecretVaultSetting ) -> Pin<Box<dyn Future<Output = CanisterResult<ActorResult<()>>> + Send + 'async_trait>>where Self: 'async_trait, 'life0: 'async_trait,

Implementors§