pub trait BoostProxyInterface: Send + Sync {
type BoostResponseFut: Future<Output = Result<BoostBoostResult, Error>> + Send;
// Required method
fn boost(&self) -> Self::BoostResponseFut;
}Required Associated Types§
type BoostResponseFut: Future<Output = Result<BoostBoostResult, Error>> + Send
Required Methods§
fn boost(&self) -> Self::BoostResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".