1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// 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::RTSPClient;
#[cfg(feature = "v1_18")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
use glib::{prelude::*, translate::*};

glib::wrapper! {
    ///
    ///
    /// # Implements
    ///
    /// [`RTSPClientExt`][trait@crate::prelude::RTSPClientExt], [`trait@glib::ObjectExt`], [`RTSPClientExtManual`][trait@crate::prelude::RTSPClientExtManual]
    #[doc(alias = "GstRTSPOnvifClient")]
    pub struct RTSPOnvifClient(Object<ffi::GstRTSPOnvifClient, ffi::GstRTSPOnvifClientClass>) @extends RTSPClient;

    match fn {
        type_ => || ffi::gst_rtsp_onvif_client_get_type(),
    }
}

impl RTSPOnvifClient {
    pub const NONE: Option<&'static RTSPOnvifClient> = None;

    /// Create a new [`RTSPOnvifClient`][crate::RTSPOnvifClient] instance.
    ///
    /// # Returns
    ///
    /// a new [`RTSPOnvifClient`][crate::RTSPOnvifClient]
    #[cfg(feature = "v1_18")]
    #[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
    #[doc(alias = "gst_rtsp_onvif_client_new")]
    pub fn new() -> RTSPOnvifClient {
        assert_initialized_main_thread!();
        unsafe { RTSPClient::from_glib_full(ffi::gst_rtsp_onvif_client_new()).unsafe_cast() }
    }
}

#[cfg(feature = "v1_18")]
#[cfg_attr(docsrs, doc(cfg(feature = "v1_18")))]
impl Default for RTSPOnvifClient {
    fn default() -> Self {
        Self::new()
    }
}

unsafe impl Send for RTSPOnvifClient {}
unsafe impl Sync for RTSPOnvifClient {}