gstreamer-rs/gstreamer/src/subclass/ghost_pad.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-20 12:43:23 +00:00
use super::prelude::*;
use glib::subclass::prelude::*;
use crate::GhostPad;
2018-11-20 12:43:23 +00:00
pub trait GhostPadImpl: PadImpl {}
2018-11-20 12:43:23 +00:00
unsafe impl<T: GhostPadImpl> IsSubclassable<T> for GhostPad {
2021-03-08 10:06:56 +00:00
fn class_init(klass: &mut glib::Class<Self>) {
<crate::Pad as IsSubclassable<T>>::class_init(klass);
let _klass = klass.as_mut();
// Nothing to do here
2018-11-20 12:43:23 +00:00
}
fn instance_init(instance: &mut glib::subclass::InitializingObject<T>) {
<crate::Pad as IsSubclassable<T>>::instance_init(instance);
}
2018-11-20 12:43:23 +00:00
}