pub enum VulkanInitError {
LoadingError(LoadingError),
VkError(Result),
WgpuError(WgpuInitError),
NoDevice,
StringConversionError(FromBytesUntilNulError),
NoNV12ProfileSupport,
}👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
Variants§
LoadingError(LoadingError)
👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
VkError(Result)
👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
WgpuError(WgpuInitError)
👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
NoDevice
👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
StringConversionError(FromBytesUntilNulError)
👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
NoNV12ProfileSupport
👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
Trait Implementations§
Source§impl Debug for VulkanInitError
impl Debug for VulkanInitError
Source§impl Display for VulkanInitError
impl Display for VulkanInitError
Source§impl Error for VulkanInitError
impl Error for VulkanInitError
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<FromBytesUntilNulError> for VulkanInitError
impl From<FromBytesUntilNulError> for VulkanInitError
Source§fn from(source: FromBytesUntilNulError) -> Self
fn from(source: FromBytesUntilNulError) -> Self
Converts to this type from the input type.
Source§impl From<LoadingError> for VulkanInitError
impl From<LoadingError> for VulkanInitError
Source§fn from(source: LoadingError) -> Self
fn from(source: LoadingError) -> Self
Converts to this type from the input type.
Source§impl From<Result> for VulkanInitError
impl From<Result> for VulkanInitError
Source§impl From<WgpuInitError> for VulkanInitError
impl From<WgpuInitError> for VulkanInitError
Source§fn from(source: WgpuInitError) -> Self
fn from(source: WgpuInitError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for VulkanInitError
impl !RefUnwindSafe for VulkanInitError
impl Send for VulkanInitError
impl Sync for VulkanInitError
impl Unpin for VulkanInitError
impl UnsafeUnpin for VulkanInitError
impl !UnwindSafe for VulkanInitError
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