pub trait AutoDiscoveryGossip {
// Required methods
async fn subscribe_and_join_with_auto_discovery(
&self,
record_publisher: RecordPublisher,
) -> Result<Topic>;
async fn subscribe_and_join_with_auto_discovery_no_wait(
&self,
record_publisher: RecordPublisher,
) -> Result<Topic>;
}Required Methods§
async fn subscribe_and_join_with_auto_discovery( &self, record_publisher: RecordPublisher, ) -> Result<Topic>
async fn subscribe_and_join_with_auto_discovery_no_wait( &self, record_publisher: RecordPublisher, ) -> Result<Topic>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.