pub enum EncodingOperationError {
SendFrameError(EncodingError),
ReceivePacketError(EncodingError),
ReceiveAudioError(EncodingError),
SubtitleNotPts,
MuxerFinished,
EncodeSubtitle(EncodeSubtitleError),
AllocPacket(AllocPacketError),
}Variants§
SendFrameError(EncodingError)
ReceivePacketError(EncodingError)
ReceiveAudioError(EncodingError)
SubtitleNotPts
MuxerFinished
EncodeSubtitle(EncodeSubtitleError)
AllocPacket(AllocPacketError)
Trait Implementations§
Source§impl Debug for EncodingOperationError
impl Debug for EncodingOperationError
Source§impl Display for EncodingOperationError
impl Display for EncodingOperationError
Source§impl Error for EncodingOperationError
impl Error for EncodingOperationError
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<EncodeSubtitleError> for EncodingOperationError
impl From<EncodeSubtitleError> for EncodingOperationError
Source§fn from(source: EncodeSubtitleError) -> Self
fn from(source: EncodeSubtitleError) -> Self
Converts to this type from the input type.
Source§impl From<EncodingOperationError> for Error
impl From<EncodingOperationError> for Error
Source§fn from(source: EncodingOperationError) -> Self
fn from(source: EncodingOperationError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for EncodingOperationError
impl RefUnwindSafe for EncodingOperationError
impl Send for EncodingOperationError
impl Sync for EncodingOperationError
impl Unpin for EncodingOperationError
impl UnwindSafe for EncodingOperationError
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