Trait UpdaterProxyInterface

Source
pub trait UpdaterProxyInterface: Send + Sync {
    type UpdateResponseFut: Future<Output = Result<(), Error>> + Send;

    // Required method
    fn update(&self, manifest_url: &str) -> Self::UpdateResponseFut;
}

Required Associated Types§

Source

type UpdateResponseFut: Future<Output = Result<(), Error>> + Send

Required Methods§

Source

fn update(&self, manifest_url: &str) -> Self::UpdateResponseFut

Implementors§