pub trait PlayerProxyInterface: Send + Sync {
    type PlayResponseFut: Future<Output = Result<PlayerPlayResult, Error>> + Send;

    // Required method
    fn play(&self, payload: PlayerPlayRequest) -> Self::PlayResponseFut;
}

Required Associated Types§

Required Methods§

source

fn play(&self, payload: PlayerPlayRequest) -> Self::PlayResponseFut

Implementors§