gstreamer-rs/gstreamer/src/subclass/pipeline.rs

11 lines
258 B
Rust
Raw Normal View History

2020-12-15 10:53:31 +00:00
// Take a look at the license at the top of the repository in the LICENSE file.
2018-11-19 23:22:22 +00:00
use glib::subclass::prelude::*;
use super::prelude::*;
use crate::Pipeline;
2018-11-19 23:22:22 +00:00
pub trait PipelineImpl: BinImpl {}
2018-11-19 23:22:22 +00:00
2021-08-24 05:55:37 +00:00
unsafe impl<T: PipelineImpl> IsSubclassable<T> for Pipeline {}