pub trait RTCPeerConnectionIceEventMethods {
    // Required methods
    fn GetCandidate(&self) -> Option<Root<Dom<RTCIceCandidate>>>;
    fn GetUrl(&self) -> Option<DOMString>;
    fn IsTrusted(&self) -> bool;
    fn Constructor(
        global: &Window,
        proto: Option<HandleObject<'_>>,
        can_gc: CanGc,
        type_: DOMString,
        eventInitDict: &RTCPeerConnectionIceEventInit,
    ) -> Result<Root<Dom<RTCPeerConnectionIceEvent>>, Error>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§