pub trait RtmpsInterface: Send + Sync {
type RtmpsConfig: RtmpConfigInterface + Send + Sync;
// Required method
fn rtmps_config(&self) -> Option<&Self::RtmpsConfig>;
}pub trait RtmpsInterface: Send + Sync {
type RtmpsConfig: RtmpConfigInterface + Send + Sync;
// Required method
fn rtmps_config(&self) -> Option<&Self::RtmpsConfig>;
}