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<IceConnectionState> for IceConnectionState
impl PartialEq<IceConnectionState> 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 ==
.