pub enum VulkanDecoderError {
VkError(Result),
VulkanDecoderUnsupported,
NoSession,
NonExistentReferenceRequested,
DecodeOperationFailed(QueryResultStatusKHR),
InvalidInputData(String),
MonochromeChromaFormatUnsupported,
VulkanCommonError(VulkanCommonError),
}👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
Variants§
VkError(Result)
👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
VulkanDecoderUnsupported
👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
NoSession
👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
NonExistentReferenceRequested
👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
DecodeOperationFailed(QueryResultStatusKHR)
👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
InvalidInputData(String)
👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
MonochromeChromaFormatUnsupported
👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
VulkanCommonError(VulkanCommonError)
👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
Trait Implementations§
Source§impl Debug for VulkanDecoderError
impl Debug for VulkanDecoderError
Source§impl Display for VulkanDecoderError
impl Display for VulkanDecoderError
Source§impl Error for VulkanDecoderError
impl Error for VulkanDecoderError
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<Result> for VulkanDecoderError
impl From<Result> for VulkanDecoderError
Source§impl From<VulkanCommonError> for VulkanDecoderError
impl From<VulkanCommonError> for VulkanDecoderError
Source§fn from(source: VulkanCommonError) -> Self
fn from(source: VulkanCommonError) -> Self
Converts to this type from the input type.
Source§impl From<VulkanDecoderError> for DecoderError
impl From<VulkanDecoderError> for DecoderError
Source§fn from(source: VulkanDecoderError) -> Self
fn from(source: VulkanDecoderError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for VulkanDecoderError
impl RefUnwindSafe for VulkanDecoderError
impl Send for VulkanDecoderError
impl Sync for VulkanDecoderError
impl Unpin for VulkanDecoderError
impl UnsafeUnpin for VulkanDecoderError
impl UnwindSafe for VulkanDecoderError
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