#[non_exhaustive]pub enum RouteInferenceError {
UnsupportedInput(PathBuf),
UnsupportedOutput(PathBuf),
AudioToVideo,
}Expand description
An error produced while inferring a conversion from file extensions.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Trait Implementations§
Source§impl Clone for RouteInferenceError
impl Clone for RouteInferenceError
Source§fn clone(&self) -> RouteInferenceError
fn clone(&self) -> RouteInferenceError
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 moreSource§impl Debug for RouteInferenceError
impl Debug for RouteInferenceError
Source§impl Display for RouteInferenceError
impl Display for RouteInferenceError
impl Eq for RouteInferenceError
Source§impl Error for RouteInferenceError
impl Error for RouteInferenceError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Source§impl PartialEq for RouteInferenceError
impl PartialEq for RouteInferenceError
impl StructuralPartialEq for RouteInferenceError
Auto Trait Implementations§
impl Freeze for RouteInferenceError
impl RefUnwindSafe for RouteInferenceError
impl Send for RouteInferenceError
impl Sync for RouteInferenceError
impl Unpin for RouteInferenceError
impl UnsafeUnpin for RouteInferenceError
impl UnwindSafe for RouteInferenceError
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