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