Skip to main content

ClientStateUpdatesProxyInterface

Trait ClientStateUpdatesProxyInterface 

Source
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§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§