gstreamer-rs/gstreamer-rtsp/src/auto/rtsp_auth_param.rs

21 lines
647 B
Rust
Raw Permalink Normal View History

2018-04-23 17:34:22 +00:00
// 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::ffi;
use glib::translate::*;
2020-12-17 22:34:53 +00:00
glib::wrapper! {
2018-08-17 21:25:12 +00:00
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
2020-11-22 10:38:53 +00:00
pub struct RTSPAuthParam(Boxed<ffi::GstRTSPAuthParam>);
match fn {
2020-11-22 10:38:53 +00:00
copy => |ptr| ffi::gst_rtsp_auth_param_copy(mut_override(ptr)),
free => |ptr| ffi::gst_rtsp_auth_param_free(ptr),
type_ => || ffi::gst_rtsp_auth_param_get_type(),
}
}
unsafe impl Send for RTSPAuthParam {}