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
sourceimpl Clone for CandidatePairState
impl Clone for CandidatePairState
sourcefn clone(&self) -> CandidatePairState
fn clone(&self) -> CandidatePairState
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for CandidatePairState
impl Debug for CandidatePairState
sourceimpl Default for CandidatePairState
impl Default for CandidatePairState
sourceimpl Display for CandidatePairState
impl Display for CandidatePairState
sourceimpl From<u8> for CandidatePairState
impl From<u8> for CandidatePairState
sourceimpl PartialEq<CandidatePairState> for CandidatePairState
impl PartialEq<CandidatePairState> for CandidatePairState
sourcefn 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 ==
. Read more
sourceimpl Serialize for CandidatePairState
impl Serialize for CandidatePairState
impl Copy for CandidatePairState
impl Eq for CandidatePairState
impl StructuralEq for CandidatePairState
impl StructuralPartialEq for CandidatePairState
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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more