pub enum TimestampNormalizerInitError {
BindGroupLayout(DeviceError),
ParseWgsl(ShaderError<ParseError>),
ValidateWgsl(ShaderError<WithSpan<ValidationError>>),
CreateShaderModule(CreateShaderModuleError),
PipelineLayout(DeviceError),
ComputePipeline(CreateComputePipelineError),
}
Variants§
BindGroupLayout(DeviceError)
ParseWgsl(ShaderError<ParseError>)
Available on crate feature
wgsl
only.ValidateWgsl(ShaderError<WithSpan<ValidationError>>)
CreateShaderModule(CreateShaderModuleError)
PipelineLayout(DeviceError)
ComputePipeline(CreateComputePipelineError)
Trait Implementations§
Source§impl Clone for TimestampNormalizerInitError
impl Clone for TimestampNormalizerInitError
Source§fn clone(&self) -> TimestampNormalizerInitError
fn clone(&self) -> TimestampNormalizerInitError
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for TimestampNormalizerInitError
impl Debug for TimestampNormalizerInitError
Source§impl Error for TimestampNormalizerInitError
impl Error for TimestampNormalizerInitError
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<CreateComputePipelineError> for TimestampNormalizerInitError
impl From<CreateComputePipelineError> for TimestampNormalizerInitError
Source§fn from(source: CreateComputePipelineError) -> Self
fn from(source: CreateComputePipelineError) -> Self
Converts to this type from the input type.
Source§impl From<CreateShaderModuleError> for TimestampNormalizerInitError
impl From<CreateShaderModuleError> for TimestampNormalizerInitError
Source§fn from(source: CreateShaderModuleError) -> Self
fn from(source: CreateShaderModuleError) -> Self
Converts to this type from the input type.
Source§impl From<TimestampNormalizerInitError> for RequestDeviceError
impl From<TimestampNormalizerInitError> for RequestDeviceError
Source§fn from(source: TimestampNormalizerInitError) -> Self
fn from(source: TimestampNormalizerInitError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TimestampNormalizerInitError
impl RefUnwindSafe for TimestampNormalizerInitError
impl Send for TimestampNormalizerInitError
impl Sync for TimestampNormalizerInitError
impl Unpin for TimestampNormalizerInitError
impl UnwindSafe for TimestampNormalizerInitError
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