use glib; use glib::object::IsA; use glib::source::SourceId; use glib::translate::*; use gst_rtsp_server_sys; use RTSPServer; pub trait RTSPServerExtManual: 'static { fn attach<'a, P: Into>>(&self, context: P) -> SourceId; } impl> RTSPServerExtManual for O { fn attach<'a, P: Into>>(&self, context: P) -> SourceId { let context = context.into(); unsafe { from_glib(gst_rtsp_server_sys::gst_rtsp_server_attach( self.as_ref().to_glib_none().0, context.to_glib_none().0, )) } } }