gstreamer-rs/gstreamer/src/subclass/preset.rs
2021-11-15 11:48:14 +02:00

10 lines
248 B
Rust

// Take a look at the license at the top of the repository in the LICENSE file.
use glib::subclass::prelude::*;
use crate::Preset;
pub trait PresetImpl: super::element::ElementImpl {}
unsafe impl<T: PresetImpl> IsImplementable<T> for Preset {}