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

Required Methods§

source

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

Implementors§