gstreamer_rtsp_server/subclass/
rtsp_onvif_client.rs

1// Take a look at the license at the top of the repository in the LICENSE file.
2
3use glib::subclass::prelude::*;
4
5use super::prelude::*;
6use crate::RTSPOnvifClient;
7
8pub trait RTSPOnvifClientImpl: RTSPClientImpl + Send + Sync {}
9
10unsafe impl<T: RTSPOnvifClientImpl> IsSubclassable<T> for RTSPOnvifClient {}