gstreamer-rs/gstreamer/src/subclass/preset.rs

14 lines
390 B
Rust
Raw Normal View History

2020-12-15 10:53:31 +00:00
// 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 {
2021-03-14 08:29:44 +00:00
fn interface_init(_iface: &mut glib::Interface<Self>) {}
fn instance_init(_instance: &mut glib::subclass::InitializingObject<T>) {}
}