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