pub enum DecodingOperationError {
FrameRefError(DecodingError),
FrameCopyPropsError(DecodingError),
DecodeSubtitleError(DecodingError),
CopySubtitleError(DecodingError),
SendPacketError(DecodingError),
ReceiveFrameError(DecodingError),
FrameAllocationError(DecodingError),
PacketAllocationError(DecodingError),
SubtitleAllocationError(DecodingError),
CorruptFrame,
HWRetrieveDataError(DecodingError),
CroppingError(DecodingError),
}Variants§
FrameRefError(DecodingError)
FrameCopyPropsError(DecodingError)
DecodeSubtitleError(DecodingError)
CopySubtitleError(DecodingError)
SendPacketError(DecodingError)
ReceiveFrameError(DecodingError)
FrameAllocationError(DecodingError)
PacketAllocationError(DecodingError)
SubtitleAllocationError(DecodingError)
CorruptFrame
HWRetrieveDataError(DecodingError)
CroppingError(DecodingError)
Trait Implementations§
Source§impl Debug for DecodingOperationError
impl Debug for DecodingOperationError
Source§impl Display for DecodingOperationError
impl Display for DecodingOperationError
Source§impl Error for DecodingOperationError
impl Error for DecodingOperationError
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<DecodingOperationError> for Error
impl From<DecodingOperationError> for Error
Source§fn from(source: DecodingOperationError) -> Self
fn from(source: DecodingOperationError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DecodingOperationError
impl RefUnwindSafe for DecodingOperationError
impl Send for DecodingOperationError
impl Sync for DecodingOperationError
impl Unpin for DecodingOperationError
impl UnwindSafe for DecodingOperationError
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