gstreamer-rs/gstreamer/src/subclass/preset.rs
2021-03-09 16:04:32 +02:00

14 lines
386 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>) {}
fn instance_init(_instance: &mut glib::subclass::InitializingObject<T>) {}
}