pub enum ProbeError {
FileNotFound {
path: PathBuf,
},
CannotOpen {
path: PathBuf,
reason: String,
},
InvalidMedia {
path: PathBuf,
reason: String,
},
NoStreams {
path: PathBuf,
},
Io(Error),
Ffmpeg(String),
}Expand description
Error type for media probing operations.
Variants§
FileNotFound
The specified file was not found.
CannotOpen
The file could not be opened.
Fields
InvalidMedia
The file is not a valid media file.
NoStreams
No streams were found in the file.
Io(Error)
An I/O error occurred.
Ffmpeg(String)
An FFmpeg error occurred.
Trait Implementations§
Source§impl Debug for ProbeError
impl Debug for ProbeError
Source§impl Display for ProbeError
impl Display for ProbeError
Source§impl Error for ProbeError
impl Error for ProbeError
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()
Auto Trait Implementations§
impl Freeze for ProbeError
impl !RefUnwindSafe for ProbeError
impl Send for ProbeError
impl Sync for ProbeError
impl Unpin for ProbeError
impl UnsafeUnpin for ProbeError
impl !UnwindSafe for ProbeError
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