pub enum FFmpegState {
Destination(String),
ParseError(String),
}Expand description
Occurs when ffmpeg is being used
Variants§
Implementations§
Source§impl FFmpegState
impl FFmpegState
pub fn parse<'a>( split: impl DoubleEndedIterator<Item = &'a str> + Send, ) -> FFmpegState
Auto Trait Implementations§
impl Freeze for FFmpegState
impl RefUnwindSafe for FFmpegState
impl Send for FFmpegState
impl Sync for FFmpegState
impl Unpin for FFmpegState
impl UnwindSafe for FFmpegState
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