gstreamer/subclass/preset.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 crate::Preset;
6
7pub trait PresetImpl: super::element::ElementImpl + ObjectSubclass<Type: IsA<Preset>> {}
8
9unsafe impl<T: PresetImpl> IsImplementable<T> for Preset {}