pub enum FfmpegErrorCode {
Show 25 variants
EndOfFile,
InvalidData,
MuxerNotFound,
OptionNotFound,
PatchWelcome,
ProtocolNotFound,
StreamNotFound,
BitstreamFilterNotFound,
Bug,
BufferTooSmall,
DecoderNotFound,
DemuxerNotFound,
EncoderNotFound,
Exit,
External,
FilterNotFound,
HttpBadRequest,
HttpForbidden,
HttpNotFound,
HttpOther4xx,
HttpServerError,
HttpUnauthorized,
Bug2,
Unknown,
UnknownError(i32),
}Variants§
EndOfFile
InvalidData
MuxerNotFound
OptionNotFound
PatchWelcome
ProtocolNotFound
StreamNotFound
BitstreamFilterNotFound
Bug
BufferTooSmall
DecoderNotFound
DemuxerNotFound
EncoderNotFound
Exit
External
FilterNotFound
HttpBadRequest
HttpForbidden
HttpNotFound
HttpOther4xx
HttpServerError
Bug2
Unknown
UnknownError(i32)
Trait Implementations§
Source§impl Clone for FfmpegErrorCode
impl Clone for FfmpegErrorCode
Source§fn clone(&self) -> FfmpegErrorCode
fn clone(&self) -> FfmpegErrorCode
Returns a copy 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 FfmpegErrorCode
impl Debug for FfmpegErrorCode
Source§impl Display for FfmpegErrorCode
impl Display for FfmpegErrorCode
Source§impl From<i32> for FfmpegErrorCode
impl From<i32> for FfmpegErrorCode
Source§impl PartialEq for FfmpegErrorCode
impl PartialEq for FfmpegErrorCode
impl Copy for FfmpegErrorCode
impl Eq for FfmpegErrorCode
impl StructuralPartialEq for FfmpegErrorCode
Auto Trait Implementations§
impl Freeze for FfmpegErrorCode
impl RefUnwindSafe for FfmpegErrorCode
impl Send for FfmpegErrorCode
impl Sync for FfmpegErrorCode
impl Unpin for FfmpegErrorCode
impl UnwindSafe for FfmpegErrorCode
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