pub trait StreamProcessorFactory {
// Required method
fn connect_to_stream_processor(
&self,
stream: &dyn ElementaryStream,
format_details_version_ordinal: u64,
) -> BoxFuture<'_, Result<StreamProcessorProxy>>;
}Required Methods§
fn connect_to_stream_processor( &self, stream: &dyn ElementaryStream, format_details_version_ordinal: u64, ) -> BoxFuture<'_, Result<StreamProcessorProxy>>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".