pub trait RTSPMediaFactoryImplExt: RTSPMediaFactoryImpl {
// Provided methods
fn parent_gen_key(&self, url: &RTSPUrl) -> Option<GString> { ... }
fn parent_create_element(&self, url: &RTSPUrl) -> Option<Element> { ... }
fn parent_construct(&self, url: &RTSPUrl) -> Option<RTSPMedia> { ... }
fn parent_create_pipeline(&self, media: &RTSPMedia) -> Option<Pipeline> { ... }
fn parent_configure(&self, media: &RTSPMedia) { ... }
fn parent_media_constructed(&self, media: &RTSPMedia) { ... }
fn parent_media_configure(&self, media: &RTSPMedia) { ... }
}
Provided Methods§
fn parent_gen_key(&self, url: &RTSPUrl) -> Option<GString>
fn parent_create_element(&self, url: &RTSPUrl) -> Option<Element>
fn parent_construct(&self, url: &RTSPUrl) -> Option<RTSPMedia>
fn parent_create_pipeline(&self, media: &RTSPMedia) -> Option<Pipeline>
fn parent_configure(&self, media: &RTSPMedia)
fn parent_media_constructed(&self, media: &RTSPMedia)
fn parent_media_configure(&self, media: &RTSPMedia)
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.