pub trait RTSPMediaExtManual: IsA<RTSPMedia> + 'static {
// Provided method
fn take_pipeline(&self, pipeline: &impl IsA<Pipeline>) { ... }
}
Provided Methods§
Sourcefn take_pipeline(&self, pipeline: &impl IsA<Pipeline>)
fn take_pipeline(&self, pipeline: &impl IsA<Pipeline>)
Set pipeline
as the gst::Pipeline
for self
. Ownership is
taken of pipeline
.
§pipeline
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.