pub trait MediaStreamImpl: MediaStreamImplExt + ObjectImpl {
    // Provided methods
    fn pause(&self) { ... }
    fn play(&self) -> bool { ... }
    fn realize(&self, surface: Surface) { ... }
    fn seek(&self, timestamp: i64) { ... }
    fn unrealize(&self, surface: Surface) { ... }
    fn update_audio(&self, muted: bool, volume: f64) { ... }
}

Provided Methods§

source

fn pause(&self)

source

fn play(&self) -> bool

source

fn realize(&self, surface: Surface)

source

fn seek(&self, timestamp: i64)

source

fn unrealize(&self, surface: Surface)

source

fn update_audio(&self, muted: bool, volume: f64)

Implementors§