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

21 lines
597 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 super::prelude::*;
use glib::subclass::prelude::*;
use crate::Pipeline;
2018-11-19 23:22:22 +00:00
pub trait PipelineImpl: BinImpl {}
2018-11-19 23:22:22 +00:00
unsafe impl<T: PipelineImpl> IsSubclassable<T> for Pipeline {
2021-03-08 10:06:56 +00:00
fn class_init(klass: &mut glib::Class<Self>) {
<crate::Bin as IsSubclassable<T>>::class_init(klass);
let _klass = klass.as_mut();
// Nothing to do here
2018-11-19 23:22:22 +00:00
}
fn instance_init(instance: &mut glib::subclass::InitializingObject<T>) {
<crate::Bin as IsSubclassable<T>>::instance_init(instance);
}
2018-11-19 23:22:22 +00:00
}