pub trait HealthAccount {
    fn init(&mut self, bump: u8) -> Result<()>;
fn ping(
        &mut self,
        clock: &Sysvar<'_, Clock>,
        config: &Account<'_, Config>
    ) -> Result<()>;
fn reset(&mut self, clock: &Sysvar<'_, Clock>) -> Result<()>; }
Expand description

HealthAccount

Required methods

Implementations on Foreign Types

Implementors