pub enum OpenEncoderOperationError {
FrameSideDataCloneError(OpenEncoderError),
ChannelLayoutCopyError(OpenEncoderError),
CodecOpenError(OpenEncoderError),
CodecParametersError(OpenEncoderError),
UnknownFrameFormat,
SettingSubtitleError(OpenEncoderError),
HwSetupError(OpenEncoderError),
ContextAllocationError(OpenEncoderError),
ThreadExited,
}Variants§
FrameSideDataCloneError(OpenEncoderError)
ChannelLayoutCopyError(OpenEncoderError)
CodecOpenError(OpenEncoderError)
CodecParametersError(OpenEncoderError)
UnknownFrameFormat
SettingSubtitleError(OpenEncoderError)
HwSetupError(OpenEncoderError)
ContextAllocationError(OpenEncoderError)
ThreadExited
Trait Implementations§
Source§impl Debug for OpenEncoderOperationError
impl Debug for OpenEncoderOperationError
Source§impl Display for OpenEncoderOperationError
impl Display for OpenEncoderOperationError
Source§impl Error for OpenEncoderOperationError
impl Error for OpenEncoderOperationError
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 From<OpenEncoderOperationError> for Error
impl From<OpenEncoderOperationError> for Error
Source§fn from(source: OpenEncoderOperationError) -> Self
fn from(source: OpenEncoderOperationError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OpenEncoderOperationError
impl RefUnwindSafe for OpenEncoderOperationError
impl Send for OpenEncoderOperationError
impl Sync for OpenEncoderOperationError
impl Unpin for OpenEncoderOperationError
impl UnwindSafe for OpenEncoderOperationError
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