pub struct RtcIceCandidate {
pub candidate: String,
pub sdp_mid: Option<String>,
pub sdp_m_line_index: Option<u32>,
pub username_fragment: Option<String>,
}Fields§
§candidate: String§sdp_mid: Option<String>§sdp_m_line_index: Option<u32>§username_fragment: Option<String>Trait Implementations§
Source§impl Clone for RtcIceCandidate
impl Clone for RtcIceCandidate
Source§fn clone(&self) -> RtcIceCandidate
fn clone(&self) -> RtcIceCandidate
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RtcIceCandidate
impl Debug for RtcIceCandidate
impl Eq for RtcIceCandidate
Source§impl PartialEq for RtcIceCandidate
impl PartialEq for RtcIceCandidate
impl StructuralPartialEq for RtcIceCandidate
Auto Trait Implementations§
impl Freeze for RtcIceCandidate
impl RefUnwindSafe for RtcIceCandidate
impl Send for RtcIceCandidate
impl Sync for RtcIceCandidate
impl Unpin for RtcIceCandidate
impl UnsafeUnpin for RtcIceCandidate
impl UnwindSafe for RtcIceCandidate
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