pub trait WebRtcBackend {
    type Controller: WebRtcControllerBackend + 'static;

    // Required method
    fn construct_webrtc_controller(
        signaller: Box<dyn WebRtcSignaller>,
        thread: WebRtcController
    ) -> Self::Controller;
}

Required Associated Types§

Required Methods§

Implementors§