[][src]Enum gstreamer_webrtc::WebRTCDataChannelState

#[non_exhaustive]pub enum WebRTCDataChannelState {
    New,
    Connecting,
    Open,
    Closing,
    Closed,
    // some variants omitted
}

GST_WEBRTC_DATA_CHANNEL_STATE_NEW: new GST_WEBRTC_DATA_CHANNEL_STATE_CONNECTING: connection GST_WEBRTC_DATA_CHANNEL_STATE_OPEN: open GST_WEBRTC_DATA_CHANNEL_STATE_CLOSING: closing GST_WEBRTC_DATA_CHANNEL_STATE_CLOSED: closed See http://w3c.github.io/webrtc-pc/`dom`-rtcdatachannelstate

Feature: v1_16

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
New
Connecting
Open
Closing
Closed

Trait Implementations

impl Clone for WebRTCDataChannelState[src]

impl Copy for WebRTCDataChannelState[src]

impl Debug for WebRTCDataChannelState[src]

impl Eq for WebRTCDataChannelState[src]

impl<'a> FromValue<'a> for WebRTCDataChannelState[src]

impl<'a> FromValueOptional<'a> for WebRTCDataChannelState[src]

impl Hash for WebRTCDataChannelState[src]

impl Ord for WebRTCDataChannelState[src]

impl PartialEq<WebRTCDataChannelState> for WebRTCDataChannelState[src]

impl PartialOrd<WebRTCDataChannelState> for WebRTCDataChannelState[src]

impl SetValue for WebRTCDataChannelState[src]

impl StaticType for WebRTCDataChannelState[src]

impl StructuralEq for WebRTCDataChannelState[src]

impl StructuralPartialEq for WebRTCDataChannelState[src]

Auto Trait Implementations

impl RefUnwindSafe for WebRTCDataChannelState

impl Send for WebRTCDataChannelState

impl Sync for WebRTCDataChannelState

impl Unpin for WebRTCDataChannelState

impl UnwindSafe for WebRTCDataChannelState

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> 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> ToSendValue for T where
    T: ToValue + SetValue + Send + ?Sized
[src]

impl<T> ToValue for T where
    T: SetValue + ?Sized
[src]

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.