pub trait UsageWatcher2ProxyInterface: Send + Sync {
    type OnStateChangedResponseFut: Future<Output = Result<(), Error>> + Send;
    // Required method
    fn on_state_changed(
        &self,
        usage: &Usage2,
        state: &UsageState,
    ) -> Self::OnStateChangedResponseFut;
}