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

    // Required method
    fn update(
        &self,
        reason: UpdateReason,
        status: &Status
    ) -> Self::UpdateResponseFut;
}

Required Associated Types§

Required Methods§

source

fn update( &self, reason: UpdateReason, status: &Status ) -> Self::UpdateResponseFut

Implementors§