pub trait ClientStateUpdatesProxyInterface: Send + Sync {
type OnClientStateUpdateResponseFut: Future<Output = Result<(), Error>> + Send;
// Required method
fn on_client_state_update(
&self,
summary: &ClientStateSummary,
) -> Self::OnClientStateUpdateResponseFut;
}Required Associated Types§
Required Methods§
fn on_client_state_update( &self, summary: &ClientStateSummary, ) -> Self::OnClientStateUpdateResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".