[][src]Enum rml_rtmp::sessions::ClientState

pub enum ClientState {
    Disconnected,
    Connected,
    PlayRequested,
    Playing,
    PublishRequested,
    Publishing,
}

Variants

Disconnected

Client has not connected to an application on the server yet,

Connected

The client has connected to an application on the server

PlayRequested

Playback has been requested for a stream key and we are still waiting for a response

Playing

We are currently playing back a stream from the server

PublishRequested

Publish has been requested and we are waiting for a response

Publishing

We are currently publishing to the server

Trait Implementations

impl Clone for ClientState
[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ClientState
[src]

Auto Trait Implementations

impl Send for ClientState

impl Sync for ClientState

Blanket Implementations

impl<T> From for T
[src]

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

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

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Same for T

type Output = T

Should always be Self