pub enum FFmpegDownloadProgress {
Starting,
Downloading(Option<usize>),
Extracting,
Finished,
}
Variants§
Starting
Downloading(Option<usize>)
An option because the content-length might not be available
Extracting
Finished
Trait Implementations§
Source§impl Clone for FFmpegDownloadProgress
impl Clone for FFmpegDownloadProgress
Source§fn clone(&self) -> FFmpegDownloadProgress
fn clone(&self) -> FFmpegDownloadProgress
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 FFmpegDownloadProgress
impl Debug for FFmpegDownloadProgress
impl Copy for FFmpegDownloadProgress
Auto Trait Implementations§
impl Freeze for FFmpegDownloadProgress
impl RefUnwindSafe for FFmpegDownloadProgress
impl Send for FFmpegDownloadProgress
impl Sync for FFmpegDownloadProgress
impl Unpin for FFmpegDownloadProgress
impl UnwindSafe for FFmpegDownloadProgress
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