pub trait MonitorProxyInterface: Send + Sync {
type UpdateResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn update(
&self,
reason: UpdateReason,
status: &Status,
) -> Self::UpdateResponseFut;
}