pub enum SeekOptions {
Relative,
Absolute,
RelativePercent,
AbsolutePercent,
}
Expand description
Options for MpvCommand::Seek
.
Variants§
Trait Implementations§
Source§impl Clone for SeekOptions
impl Clone for SeekOptions
Source§fn clone(&self) -> SeekOptions
fn clone(&self) -> SeekOptions
Returns a copy 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 SeekOptions
impl Debug for SeekOptions
Source§impl<'de> Deserialize<'de> for SeekOptions
impl<'de> Deserialize<'de> for SeekOptions
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 IntoRawCommandPart for SeekOptions
impl IntoRawCommandPart for SeekOptions
fn into_raw_command_part(self) -> String
Source§impl Serialize for SeekOptions
impl Serialize for SeekOptions
impl Copy for SeekOptions
Auto Trait Implementations§
impl Freeze for SeekOptions
impl RefUnwindSafe for SeekOptions
impl Send for SeekOptions
impl Sync for SeekOptions
impl Unpin for SeekOptions
impl UnwindSafe for SeekOptions
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