pub enum WgpuConverterInitError {
OnlyLimitedBT709Supported,
IncompatibleFrame {
expected: (ColorSpace, ColorRange),
actual: (ColorSpace, ColorRange),
},
}👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
Variants§
OnlyLimitedBT709Supported
👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
IncompatibleFrame
👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
Fields
§
expected: (ColorSpace, ColorRange)👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
§
actual: (ColorSpace, ColorRange)👎Deprecated since 0.3.1:
This crate has been renamed. Please migrate to gpu-video.
Trait Implementations§
Source§impl Debug for WgpuConverterInitError
impl Debug for WgpuConverterInitError
Source§impl Display for WgpuConverterInitError
impl Display for WgpuConverterInitError
Source§impl Error for WgpuConverterInitError
impl Error for WgpuConverterInitError
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()
Auto Trait Implementations§
impl Freeze for WgpuConverterInitError
impl RefUnwindSafe for WgpuConverterInitError
impl Send for WgpuConverterInitError
impl Sync for WgpuConverterInitError
impl Unpin for WgpuConverterInitError
impl UnsafeUnpin for WgpuConverterInitError
impl UnwindSafe for WgpuConverterInitError
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