gstreamer_webrtc/auto/
web_rtcice_candidate_stats.rsuse crate::ffi;
use glib::translate::*;
glib::wrapper! {
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct WebRTCICECandidateStats(Boxed<ffi::GstWebRTCICECandidateStats>);
match fn {
copy => |ptr| ffi::gst_webrtc_ice_candidate_stats_copy(mut_override(ptr)),
free => |ptr| ffi::gst_webrtc_ice_candidate_stats_free(ptr),
type_ => || ffi::gst_webrtc_ice_candidate_stats_get_type(),
}
}
unsafe impl Send for WebRTCICECandidateStats {}
unsafe impl Sync for WebRTCICECandidateStats {}