1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#[cfg(any(feature = "v1_12", feature = "dox"))]
use glib::translate::*;
use gst_rtsp_sys;
glib_wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct RTSPAuthParam(Boxed<gst_rtsp_sys::GstRTSPAuthParam>);
match fn {
copy => |ptr| gst_rtsp_sys::gst_rtsp_auth_param_copy(mut_override(ptr)),
free => |ptr| gst_rtsp_sys::gst_rtsp_auth_param_free(ptr),
get_type => || gst_rtsp_sys::gst_rtsp_auth_param_get_type(),
}
}
unsafe impl Send for RTSPAuthParam {}