pub trait ClientStateUpdatesProxyInterface: Send + Sync {
type OnClientStateUpdateResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn on_client_state_update(
&self,
summary: &ClientStateSummary,
) -> Self::OnClientStateUpdateResponseFut;
}