UpdaterProxyInterface

Trait UpdaterProxyInterface 

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

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

Required Associated Types§

Required Methods§

Source

fn update( &self, manifest_url: &str, signature: &[u8], ) -> Self::UpdateResponseFut

Implementors§