pub enum ReferenceManagementError {
SIFramesNotSupported,
SPFramesNotSupported,
PicOrderCntTypeNotSupported(u8),
IncorrectData(String),
MissingFrame,
}👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
Variants§
SIFramesNotSupported
👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
SPFramesNotSupported
👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
PicOrderCntTypeNotSupported(u8)
👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
IncorrectData(String)
👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
MissingFrame
👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
Trait Implementations§
Source§impl Debug for ReferenceManagementError
impl Debug for ReferenceManagementError
Source§impl Display for ReferenceManagementError
impl Display for ReferenceManagementError
Source§impl Error for ReferenceManagementError
impl Error for ReferenceManagementError
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<ReferenceManagementError> for DecoderError
impl From<ReferenceManagementError> for DecoderError
Source§fn from(source: ReferenceManagementError) -> Self
fn from(source: ReferenceManagementError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ReferenceManagementError
impl RefUnwindSafe for ReferenceManagementError
impl Send for ReferenceManagementError
impl Sync for ReferenceManagementError
impl Unpin for ReferenceManagementError
impl UnsafeUnpin for ReferenceManagementError
impl UnwindSafe for ReferenceManagementError
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