gstreamer/subclass/ghost_pad.rs
1// Take a look at the license at the top of the repository in the LICENSE file.
2
3use glib::{prelude::*, subclass::prelude::*};
4
5use super::prelude::*;
6use crate::GhostPad;
7
8pub trait GhostPadImpl: ProxyPadImpl + ObjectSubclass<Type: IsA<GhostPad>> {}
9
10unsafe impl<T: GhostPadImpl> IsSubclassable<T> for GhostPad {}