[][src]Struct librespot_playback::player::Player

pub struct Player { /* fields omitted */ }

Implementations

impl Player[src]

pub fn new<F>(
    config: PlayerConfig,
    session: Session,
    audio_filter: Option<Box<dyn AudioFilter + Send>>,
    sink_builder: F
) -> (Player, PlayerEventChannel) where
    F: FnOnce() -> Box<dyn Sink> + Send + 'static, 
[src]

pub fn load(
    &mut self,
    track_id: SpotifyId,
    start_playing: bool,
    position_ms: u32
) -> u64
[src]

pub fn preload(&self, track_id: SpotifyId)[src]

pub fn play(&self)[src]

pub fn pause(&self)[src]

pub fn stop(&self)[src]

pub fn seek(&self, position_ms: u32)[src]

pub fn get_player_event_channel(&self) -> PlayerEventChannel[src]

pub fn get_end_of_track_future(&self) -> Box<dyn Future<Item = (), Error = ()>>[src]

pub fn set_sink_event_callback(&self, callback: Option<SinkEventCallback>)[src]

pub fn emit_volume_set_event(&self, volume: u16)[src]

Trait Implementations

impl Drop for Player[src]

Auto Trait Implementations

impl !RefUnwindSafe for Player

impl Send for Player

impl Sync for Player

impl Unpin for Player

impl !UnwindSafe for Player

Blanket Implementations

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

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,