// This file was generated by gir (https://github.com/gtk-rs/gir) // from gir-files (https://github.com/gtk-rs/gir-files) // DO NOT EDIT use BaseEffect; use Extractable; use TimelineElement; use TrackElement; use ffi; use glib::GString; use glib::StaticType; use glib::Value; use glib::object::IsA; use glib::translate::*; use gobject_ffi; glib_wrapper! { pub struct Effect(Object) @extends BaseEffect, TrackElement, TimelineElement, @implements Extractable; match fn { get_type => || ffi::ges_effect_get_type(), } } impl Effect { pub fn new(bin_description: &str) -> Option { assert_initialized_main_thread!(); unsafe { from_glib_none(ffi::ges_effect_new(bin_description.to_glib_none().0)) } } } pub const NONE_EFFECT: Option<&Effect> = None; pub trait EffectExt: 'static { fn get_property_bin_description(&self) -> Option; } impl> EffectExt for O { fn get_property_bin_description(&self) -> Option { unsafe { let mut value = Value::from_type(::static_type()); gobject_ffi::g_object_get_property(self.to_glib_none().0 as *mut gobject_ffi::GObject, b"bin-description\0".as_ptr() as *const _, value.to_glib_none_mut().0); value.get() } } }