pub enum MediaControlEventType {
Play,
Pause,
PlayPause,
Stop,
Next,
Previous,
FastForward,
Rewind,
SeekTo(f64),
SetPosition(f64),
SetPlaybackRate(f64),
}Variants§
Play
Pause
PlayPause
Stop
Next
Previous
FastForward
Rewind
SeekTo(f64)
SetPosition(f64)
SetPlaybackRate(f64)
Trait Implementations§
Source§impl Clone for MediaControlEventType
impl Clone for MediaControlEventType
Source§fn clone(&self) -> MediaControlEventType
fn clone(&self) -> MediaControlEventType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MediaControlEventType
impl Debug for MediaControlEventType
Source§impl<'de> Deserialize<'de> for MediaControlEventType
impl<'de> Deserialize<'de> for MediaControlEventType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for MediaControlEventType
impl Serialize for MediaControlEventType
impl Copy for MediaControlEventType
Auto Trait Implementations§
impl Freeze for MediaControlEventType
impl RefUnwindSafe for MediaControlEventType
impl Send for MediaControlEventType
impl Sync for MediaControlEventType
impl Unpin for MediaControlEventType
impl UnwindSafe for MediaControlEventType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more