1
2
3
4
5
6
7
8
9
10
11
12
//! Provides all of the methods needed to control and
//! work with a `Player`.
//! 
//! Note that these methods are also all implemented
//! on the `Player` struct.
mod methods_complex;
mod methods_simple;

pub use methods_complex::*;
pub use methods_simple::*;

const INTERFACE: &str = "org.mpris.MediaPlayer2.Player";