[][src]Struct acestream_client::Engine

pub struct Engine {
    pub engine_url: Url,
    pub streams: HashMap<String, Stream>,
}

Fields

engine_url: Urlstreams: HashMap<String, Stream>

Methods

impl Engine[src]

pub fn new(http_link: &str) -> Self[src]

pub fn is_up(&self) -> bool[src]

pub fn version(&self) -> Result<Value, Error>[src]

pub fn build_url(&self, path: &str, queries: &HashMap<String, String>) -> Url[src]

pub fn get_stream(&self, id: &str) -> Stream[src]

pub fn add_stream(&mut self, id: &str)[src]

pub fn is_stream_live(&self, id: &str) -> bool[src]

pub fn get_stream_stat(&self, id: &str) -> Stat[src]

pub fn stop_stream(&self, id: &str) -> String[src]

pub fn get_players(&self) -> Vec<Player>[src]

pub fn play_on_player(&self, id: &str, player_id: &str) -> AceResult<String>[src]

Trait Implementations

impl Default for Engine[src]

impl Debug for Engine[src]

Auto Trait Implementations

impl Send for Engine

impl Sync for Engine

Blanket Implementations

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

impl<T> From for T[src]

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

type Error = Infallible

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

The type returned in the event of a conversion error.

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

impl<T> Erased for T