Enum webrtc_ice::state::ConnectionState [−][src]
pub enum ConnectionState {
Unspecified,
New,
Checking,
Connected,
Completed,
Failed,
Disconnected,
Closed,
}
Expand description
An enum showing the state of a ICE Connection List of supported States.
Variants
Unspecified
New
ICE agent is gathering addresses.
Checking
ICE agent has been given local and remote candidates, and is attempting to find a match.
Connected
ICE agent has a pairing, but is still checking other pairs.
Completed
ICE agent has finished.
Failed
ICE agent never could successfully connect.
Disconnected
ICE agent connected successfully, but has entered a failed state.
Closed
ICE agent has finished and is no longer handling requests.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for ConnectionState
impl Send for ConnectionState
impl Sync for ConnectionState
impl Unpin for ConnectionState
impl UnwindSafe for ConnectionState
Blanket Implementations
Mutably borrows from an owned value. Read more