Trait wasmcloud_runtime::capability::secrets::store::HostSecret

source ·
pub trait HostSecret {
    // Required method
    fn drop<'life0, 'async_trait>(
        &'life0 mut self,
        rep: Resource<Secret>,
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

source

fn drop<'life0, 'async_trait>( &'life0 mut self, rep: Resource<Secret>, ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementations on Foreign Types§

source§

impl<_T: HostSecret + ?Sized + Send> HostSecret for &mut _T

source§

fn drop<'life0, 'async_trait>( &'life0 mut self, rep: Resource<Secret>, ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§