pub enum ParsedState {
Youtube(YoutubeState),
Download(DownloadState),
FFMpeg(FFmpegState),
Error(ErrorState),
Deleting(DeletingState),
None(String),
Unknown(String),
ParseError(String),
}Expand description
General parsed state, can contain all of the more specific states
Variants§
Youtube(YoutubeState)
Download(DownloadState)
FFMpeg(FFmpegState)
Error(ErrorState)
Deleting(DeletingState)
None(String)
Unknown(String)
ParseError(String)
Implementations§
Auto Trait Implementations§
impl Freeze for ParsedState
impl RefUnwindSafe for ParsedState
impl Send for ParsedState
impl Sync for ParsedState
impl Unpin for ParsedState
impl UnwindSafe for ParsedState
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