gstreamer/subclass/object.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
5pub trait GstObjectImpl:
6 ObjectImpl + ObjectSubclass<Type: IsA<crate::Object>> + Send + Sync
7{
8}
9
10unsafe impl<T: GstObjectImpl> IsSubclassable<T> for crate::Object {}