pub trait Closer {
    // Required method
    fn close<'life0, 'async_trait>(
        &'life0 self
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

source

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

Implementors§

source§

impl Closer for avalanche_types::subnet::rpc::database::corruptabledb::Database

source§

impl Closer for avalanche_types::subnet::rpc::database::memdb::Database

source§

impl Closer for DatabaseClient

source§

impl Closer for avalanche_types::subnet::rpc::database::versiondb::Database