pub enum FfmpegDownloadProgressEvent {
Starting,
Downloading {
total_bytes: u64,
downloaded_bytes: u64,
},
UnpackingArchive,
Done,
}Variants§
Auto Trait Implementations§
impl Freeze for FfmpegDownloadProgressEvent
impl RefUnwindSafe for FfmpegDownloadProgressEvent
impl Send for FfmpegDownloadProgressEvent
impl Sync for FfmpegDownloadProgressEvent
impl Unpin for FfmpegDownloadProgressEvent
impl UnsafeUnpin for FfmpegDownloadProgressEvent
impl UnwindSafe for FfmpegDownloadProgressEvent
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