pub trait WebRTCICEExtManual: 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§
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_24 only.Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.