pub trait LoaderClientProxyInterface: Send + Sync {
type OnResponseResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn on_response(&self, response: Response) -> Self::OnResponseResponseFut;
}
pub trait LoaderClientProxyInterface: Send + Sync {
type OnResponseResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn on_response(&self, response: Response) -> Self::OnResponseResponseFut;
}