pub trait BoostProxyInterface: Send + Sync {
type BoostResponseFut: Future<Output = Result<BoostBoostResult, Error>> + Send;
// Required method
fn boost(&self) -> Self::BoostResponseFut;
}pub trait BoostProxyInterface: Send + Sync {
type BoostResponseFut: Future<Output = Result<BoostBoostResult, Error>> + Send;
// Required method
fn boost(&self) -> Self::BoostResponseFut;
}