Enum rust_cast::channels::media::PlayerState [] [src]

pub enum PlayerState {
    Idle,
    Playing,
    Buffering,
    Paused,
}

Describes possible player states.

Variants

Player has not been loaded yet.

Player is actively playing content.

Player is in PLAY mode but not actively playing content (currentTime is not changing).

Player is paused.

Trait Implementations

impl Debug for PlayerState
[src]

[src]

Formats the value using the given formatter.

impl FromStr for PlayerState
[src]

The associated error which can be returned from parsing.

[src]

Parses a string s to return a value of this type. Read more

impl ToString for PlayerState
[src]

[src]

Converts the given value to a String. Read more