pub trait MediaPlayPauseSource: Sized {
    fn play_pause(&mut self, pause: bool);
}

Required Methods

Implementors