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