Struct servo_media_webrtc::IceCandidate
source · pub struct IceCandidate {
pub sdp_mline_index: u32,
pub candidate: String,
}
Expand description
https://www.w3.org/TR/webrtc/#rtcicecandidate-interface
https://developer.mozilla.org/en-US/docs/Web/API/RTCIceCandidate
Fields§
§sdp_mline_index: u32
§candidate: String
Trait Implementations§
source§impl Clone for IceCandidate
impl Clone for IceCandidate
source§fn clone(&self) -> IceCandidate
fn clone(&self) -> IceCandidate
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for IceCandidate
impl Debug for IceCandidate
source§impl Hash for IceCandidate
impl Hash for IceCandidate
source§impl PartialEq for IceCandidate
impl PartialEq for IceCandidate
source§fn eq(&self, other: &IceCandidate) -> bool
fn eq(&self, other: &IceCandidate) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for IceCandidate
impl StructuralPartialEq for IceCandidate
Auto Trait Implementations§
impl Freeze for IceCandidate
impl RefUnwindSafe for IceCandidate
impl Send for IceCandidate
impl Sync for IceCandidate
impl Unpin for IceCandidate
impl UnwindSafe for IceCandidate
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more