pub struct PlayerControlSynchronousProxy { /* private fields */ }
Implementations§
Source§impl PlayerControlSynchronousProxy
impl PlayerControlSynchronousProxy
pub fn new(channel: Channel) -> Self
pub fn into_channel(self) -> Channel
Sourcepub fn wait_for_event(
&self,
deadline: MonotonicInstant,
) -> Result<PlayerControlEvent, Error>
pub fn wait_for_event( &self, deadline: MonotonicInstant, ) -> Result<PlayerControlEvent, Error>
Waits until an event arrives and returns it. It is safe for other threads to make concurrent requests while waiting for an event.
Sourcepub fn play(&self) -> Result<(), Error>
pub fn play(&self) -> Result<(), Error>
Plays media. If this method is not supported as indicated by the absence of the PLAY
flag in PlayerCapabilities
, this method does nothing.
Sourcepub fn pause(&self) -> Result<(), Error>
pub fn pause(&self) -> Result<(), Error>
Pauses playback and retains position in media. If this method is not supported as indicated
by the absence of the PAUSE
flag in PlayerCapabilities
, this method does nothing.
Sourcepub fn seek(&self, position: i64) -> Result<(), Error>
pub fn seek(&self, position: i64) -> Result<(), Error>
Seeks to a specific position in media. Implementations are free to
enter an error state if the position is out of bounds. position
is an offset from the beginning of the media. If this method is not supported as indicated
by the absence of the SEEK
flag in PlayerCapabilities
, this method does nothing.
Sourcepub fn skip_forward(&self) -> Result<(), Error>
pub fn skip_forward(&self) -> Result<(), Error>
Skips forward in media by the player’s default skip amount. If this method is not supported
as indicated by the absence of the SKIP_FORWARD
flag in PlayerCapabilities
, this method
does nothing.
Sourcepub fn skip_reverse(&self) -> Result<(), Error>
pub fn skip_reverse(&self) -> Result<(), Error>
Skips in reverse in media by the player’s default skip amount. If this method is not
supported as indicated by the absence of the SKIP_REVERSE
flag in PlayerCapabilities
,
this method does nothing.
Sourcepub fn next_item(&self) -> Result<(), Error>
pub fn next_item(&self) -> Result<(), Error>
Changes media to the next item (e.g. next song in playlist). If this method is not
supported as indicated by the absence of the CHANGE_TO_NEXT_ITEM
flag in
PlayerCapabilities
, this method does nothing.
Sourcepub fn prev_item(&self) -> Result<(), Error>
pub fn prev_item(&self) -> Result<(), Error>
Changes media to the previous item. If this method is not
supported as indicated by the absence of the CHANGE_TO_PREV_ITEM
flag in
PlayerCapabilities
, this method does nothing.
Sourcepub fn set_playback_rate(&self, playback_rate: f32) -> Result<(), Error>
pub fn set_playback_rate(&self, playback_rate: f32) -> Result<(), Error>
Sets the playback rate of the media. This will not change the playback mode. If this method
is not supported as indicated by the absense of the SET_PLAYBACK_RATE
flag in
PlayerCapabilities
, this method does nothing.
Sourcepub fn set_repeat_mode(&self, repeat_mode: RepeatMode) -> Result<(), Error>
pub fn set_repeat_mode(&self, repeat_mode: RepeatMode) -> Result<(), Error>
Sets repeat mode to any of the supported repeat modes.
Whether this method takes effect depends on the PlayerCapabilities
and repeat_mode
:
- [
OFF
] is always supported. - [
GROUP
] requires theREPEAT_GROUPS
capability, and is otherwise ignored. - [
SINGLE
] requires theREPEAT_SINGLE
capability, and is otherwise ignored.
Sourcepub fn set_shuffle_mode(&self, shuffle_on: bool) -> Result<(), Error>
pub fn set_shuffle_mode(&self, shuffle_on: bool) -> Result<(), Error>
Sets shuffle mode. If this method is not supported as indicated by the absence of the
SHUFFLE
flag in PlayerCapabilities
, this method does nothing.
Sourcepub fn bind_volume_control(
&self,
volume_control_request: ServerEnd<VolumeControlMarker>,
) -> Result<(), Error>
pub fn bind_volume_control( &self, volume_control_request: ServerEnd<VolumeControlMarker>, ) -> Result<(), Error>
Binds to the session’s volume control for control and notifications. If this method is not
supported as indicated by the absence of the HAS_GAIN_CONTROL
flag in
PlayerCapabilities
, the channel handle passed as volume_control_request
is closed
by the service.
Trait Implementations§
Source§impl SynchronousProxy for PlayerControlSynchronousProxy
impl SynchronousProxy for PlayerControlSynchronousProxy
Source§type Proxy = PlayerControlProxy
type Proxy = PlayerControlProxy
Source§type Protocol = PlayerControlMarker
type Protocol = PlayerControlMarker
Proxy
controls.