pub trait WaiterProxyInterface: Send + Sync {
    // Required method
    fn ack(&self, status: i32) -> Result<(), Error>;
}

Required Methods§

source

fn ack(&self, status: i32) -> Result<(), Error>

Implementors§