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

12 lines
306 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 {
fn interface_init(_iface: &mut glib::Class<Self>) {}
}