pub trait WebRTCICEExtManual: Sealed + IsA<WebRTCICE> + 'static {
    // Provided methods
    fn add_candidate(&self, stream: &impl IsA<WebRTCICEStream>, candidate: &str) { ... }
    fn add_candidate_full(
        &self,
        stream: &impl IsA<WebRTCICEStream>,
        candidate: &str,
        promise: Option<&Promise>
    ) { ... }
}
Available on crate feature v1_22 only.

Provided Methods§

source

fn add_candidate(&self, stream: &impl IsA<WebRTCICEStream>, candidate: &str)

source

fn add_candidate_full( &self, stream: &impl IsA<WebRTCICEStream>, candidate: &str, promise: Option<&Promise> )

Available on crate feature v1_24 only.

Implementors§