gstreamer-rs/gstreamer/src/subclass/ghost_pad.rs
2021-03-08 12:18:24 +02:00

17 lines
445 B
Rust

// Take a look at the license at the top of the repository in the LICENSE file.
use super::prelude::*;
use glib::subclass::prelude::*;
use crate::GhostPad;
pub trait GhostPadImpl: PadImpl {}
unsafe impl<T: GhostPadImpl> IsSubclassable<T> for GhostPad {
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
}
}