Enum medea_client_api_proto::stats::IceRole[][src]

pub enum IceRole {
    Unknown,
    Controlling,
    Controlled,
}

Variants of ICE roles.

More info in the RFC 5245.

Variants

Unknown

Agent whose role as defined by Section 3 in RFC 5245, has not yet been determined.

Controlling

Controlling agent as defined by Section 3 in RFC 5245.

Controlled

Controlled agent as defined by Section 3 in RFC 5245.

Trait Implementations

impl Clone for IceRole[src]

impl Copy for IceRole[src]

impl Debug for IceRole[src]

impl<'de> Deserialize<'de> for IceRole[src]

impl Eq for IceRole[src]

impl Hash for IceRole[src]

impl PartialEq<IceRole> for IceRole[src]

impl Serialize for IceRole[src]

impl StructuralEq for IceRole[src]

impl StructuralPartialEq for IceRole[src]

Auto Trait Implementations

impl RefUnwindSafe for IceRole

impl Send for IceRole

impl Sync for IceRole

impl Unpin for IceRole

impl UnwindSafe for IceRole

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.