pub enum FileMuxerError {
UnsupportedBuffer(&'static str),
Ffmpeg(Error),
}Expand description
Errors specific to FileMuxer. Converts into the crate-wide Error via
? (see crate::error::Error).
Variants§
UnsupportedBuffer(&'static str)
A stream sink received a buffer other than a packet or end-of-stream.
Ffmpeg(Error)
FFmpeg rejected muxer creation, packet writing, or finalization.
Trait Implementations§
Source§impl Debug for FileMuxerError
impl Debug for FileMuxerError
Source§impl Display for FileMuxerError
impl Display for FileMuxerError
Source§impl Error for FileMuxerError
impl Error for FileMuxerError
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 From<Error> for FileMuxerError
impl From<Error> for FileMuxerError
Source§impl From<FileMuxerError> for Error
impl From<FileMuxerError> for Error
Source§fn from(source: FileMuxerError) -> Self
fn from(source: FileMuxerError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for FileMuxerError
impl RefUnwindSafe for FileMuxerError
impl Send for FileMuxerError
impl Sync for FileMuxerError
impl Unpin for FileMuxerError
impl UnsafeUnpin for FileMuxerError
impl UnwindSafe for FileMuxerError
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