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

Required Methods§

source

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

Implementors§

source§

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

source§

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

source§

impl Checkable for DatabaseClient

source§

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