pub enum FfmpegErrorKind {
OutOfSpace,
Other,
}Expand description
Why an ffmpeg transcode failed, so the executor can treat a full scratch disk as a systemic abort rather than a skippable per-clip fault.
Variants§
OutOfSpace
The scratch device or quota ran out of space.
Other
Any other failure (bad input, missing binary, encode error).
Trait Implementations§
Source§impl Clone for FfmpegErrorKind
impl Clone for FfmpegErrorKind
Source§fn clone(&self) -> FfmpegErrorKind
fn clone(&self) -> FfmpegErrorKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FfmpegErrorKind
Source§impl Debug for FfmpegErrorKind
impl Debug for FfmpegErrorKind
impl Eq for FfmpegErrorKind
Source§impl PartialEq for FfmpegErrorKind
impl PartialEq for FfmpegErrorKind
Source§fn eq(&self, other: &FfmpegErrorKind) -> bool
fn eq(&self, other: &FfmpegErrorKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for FfmpegErrorKind
Auto Trait Implementations§
impl Freeze for FfmpegErrorKind
impl RefUnwindSafe for FfmpegErrorKind
impl Send for FfmpegErrorKind
impl Sync for FfmpegErrorKind
impl Unpin for FfmpegErrorKind
impl UnsafeUnpin for FfmpegErrorKind
impl UnwindSafe for FfmpegErrorKind
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