pub trait RTSPServerImpl: RTSPServerImplExt + ObjectImpl + Send + Sync {
    // Provided methods
    fn create_client(&self) -> Option<RTSPClient> { ... }
    fn client_connected(&self, client: &RTSPClient) { ... }
}

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§