Enum webrtc_ice::candidate::CandidatePairState
source · pub enum CandidatePairState {
Unspecified,
Waiting,
InProgress,
Failed,
Succeeded,
}
Expand description
Represent the ICE candidate pair state.
Variants§
Unspecified
Waiting
Means a check has not been performed for this pair.
InProgress
Means a check has been sent for this pair, but the transaction is in progress.
Failed
Means a check for this pair was already done and failed, either never producing any response or producing an unrecoverable failure response.
Succeeded
Means a check for this pair was already done and produced a successful result.
Trait Implementations§
source§impl Clone for CandidatePairState
impl Clone for CandidatePairState
source§fn clone(&self) -> CandidatePairState
fn clone(&self) -> CandidatePairState
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 CandidatePairState
impl Debug for CandidatePairState
source§impl Default for CandidatePairState
impl Default for CandidatePairState
source§impl Display for CandidatePairState
impl Display for CandidatePairState
source§impl From<u8> for CandidatePairState
impl From<u8> for CandidatePairState
source§impl PartialEq<CandidatePairState> for CandidatePairState
impl PartialEq<CandidatePairState> for CandidatePairState
source§fn eq(&self, other: &CandidatePairState) -> bool
fn eq(&self, other: &CandidatePairState) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.