// This file was generated by gir (https://github.com/gtk-rs/gir) // from gir-files (https://github.com/gtk-rs/gir-files) // from gst-gir-files (https://gitlab.freedesktop.org/gstreamer/gir-files-rs.git) // DO NOT EDIT use crate::PlayerSignalDispatcher; use glib::object::ObjectType as ObjectType_; use glib::translate::*; use glib::StaticType; glib::wrapper! { #[doc(alias = "GstPlayerGMainContextSignalDispatcher")] pub struct PlayerGMainContextSignalDispatcher(Object) @implements PlayerSignalDispatcher; match fn { type_ => || ffi::gst_player_g_main_context_signal_dispatcher_get_type(), } } impl PlayerGMainContextSignalDispatcher { #[doc(alias = "application-context")] pub fn application_context(&self) -> Option { unsafe { let mut value = glib::Value::from_type(::static_type()); glib::gobject_ffi::g_object_get_property( self.as_ptr() as *mut glib::gobject_ffi::GObject, b"application-context\0".as_ptr() as *const _, value.to_glib_none_mut().0, ); value .get() .expect("Return Value for property `application-context` getter") } } } unsafe impl Send for PlayerGMainContextSignalDispatcher {} unsafe impl Sync for PlayerGMainContextSignalDispatcher {}