Enum webrtc_ice::candidate::CandidatePairState [−][src]
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
Auto Trait Implementations
impl RefUnwindSafe for CandidatePairState
impl Send for CandidatePairState
impl Sync for CandidatePairState
impl Unpin for CandidatePairState
impl UnwindSafe for CandidatePairState
Blanket Implementations
Mutably borrows from an owned value. Read more