gstreamer_rtsp_server/subclass/
rtsp_onvif_server.rs

1// Take a look at the license at the top of the repository in the LICENSE file.
2
3use glib::{prelude::*, subclass::prelude::*};
4
5use super::prelude::*;
6use crate::RTSPOnvifServer;
7
8pub trait RTSPOnvifServerImpl:
9    RTSPServerImpl + ObjectSubclass<Type: IsA<RTSPOnvifServer>> + Send + Sync
10{
11}
12
13unsafe impl<T: RTSPOnvifServerImpl> IsSubclassable<T> for RTSPOnvifServer {}