pub trait WebRTCICEStreamExt: IsA<WebRTCICEStream> + 'static {
// Provided methods
fn find_transport(
&self,
component: WebRTCICEComponent,
) -> Option<WebRTCICETransport> { ... }
fn gather_candidates(&self) -> bool { ... }
fn stream_id(&self) -> u32 { ... }
}
Expand description
Provided Methods§
Sourcefn find_transport(
&self,
component: WebRTCICEComponent,
) -> Option<WebRTCICETransport>
fn find_transport( &self, component: WebRTCICEComponent, ) -> Option<WebRTCICETransport>
Sourcefn gather_candidates(&self) -> bool
fn gather_candidates(&self) -> bool
§Returns
FALSE on error, TRUE otherwise
fn stream_id(&self) -> u32
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.