pub enum InputVideoErrorKind {
FailedToDecode {
path: PathBuf,
},
VadAnalysisFailed,
}Variants§
Implementations§
Source§impl InputVideoErrorKind
impl InputVideoErrorKind
pub fn into_error(self) -> InputVideoError
Trait Implementations§
Source§impl Clone for InputVideoErrorKind
impl Clone for InputVideoErrorKind
Source§fn clone(&self) -> InputVideoErrorKind
fn clone(&self) -> InputVideoErrorKind
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 InputVideoErrorKind
impl Debug for InputVideoErrorKind
Source§impl Display for InputVideoErrorKind
impl Display for InputVideoErrorKind
Source§impl Fail for InputVideoErrorKind
impl Fail for InputVideoErrorKind
Source§fn cause(&self) -> Option<&dyn Fail>
fn cause(&self) -> Option<&dyn Fail>
Returns a reference to the underlying cause of this failure, if it
is an error that wraps other errors. Read more
Source§fn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
Returns a reference to the
Backtrace carried by this failure, if it
carries one. Read moreSource§impl From<InputVideoErrorKind> for InputVideoError
impl From<InputVideoErrorKind> for InputVideoError
Source§fn from(kind: InputVideoErrorKind) -> InputVideoError
fn from(kind: InputVideoErrorKind) -> InputVideoError
Converts to this type from the input type.
Source§impl PartialEq for InputVideoErrorKind
impl PartialEq for InputVideoErrorKind
impl Eq for InputVideoErrorKind
impl StructuralPartialEq for InputVideoErrorKind
Auto Trait Implementations§
impl Freeze for InputVideoErrorKind
impl RefUnwindSafe for InputVideoErrorKind
impl Send for InputVideoErrorKind
impl Sync for InputVideoErrorKind
impl Unpin for InputVideoErrorKind
impl UnwindSafe for InputVideoErrorKind
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