pub enum IceConnectionState {
New,
Checking,
Connected,
Completed,
Disconnected,
Failed,
Closed,
}
Expand description
https://www.w3.org/TR/webrtc/#rtciceconnectionstate-enum
Variants§
Trait Implementations§
source§impl Clone for IceConnectionState
impl Clone for IceConnectionState
source§fn clone(&self) -> IceConnectionState
fn clone(&self) -> IceConnectionState
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 IceConnectionState
impl Debug for IceConnectionState
source§impl Hash for IceConnectionState
impl Hash for IceConnectionState
source§impl PartialEq for IceConnectionState
impl PartialEq for IceConnectionState
source§fn eq(&self, other: &IceConnectionState) -> bool
fn eq(&self, other: &IceConnectionState) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for IceConnectionState
impl Eq for IceConnectionState
impl StructuralPartialEq for IceConnectionState
Auto Trait Implementations§
impl Freeze for IceConnectionState
impl RefUnwindSafe for IceConnectionState
impl Send for IceConnectionState
impl Sync for IceConnectionState
impl Unpin for IceConnectionState
impl UnwindSafe for IceConnectionState
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