pub trait UpdaterProxyInterface: Send + Sync {
type UpdateResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn update(&self, manifest_url: &str) -> Self::UpdateResponseFut;
}
pub trait UpdaterProxyInterface: Send + Sync {
type UpdateResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn update(&self, manifest_url: &str) -> Self::UpdateResponseFut;
}