Enum wgpu_core::ray_tracing::CreateTlasError
source · pub enum CreateTlasError {
Device(DeviceError),
CreateBufferError(CreateBufferError),
MissingFeature,
}
Variants§
Trait Implementations§
source§impl Clone for CreateTlasError
impl Clone for CreateTlasError
source§fn clone(&self) -> CreateTlasError
fn clone(&self) -> CreateTlasError
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 CreateTlasError
impl Debug for CreateTlasError
source§impl Display for CreateTlasError
impl Display for CreateTlasError
source§impl Error for CreateTlasError
impl Error for CreateTlasError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<CreateBufferError> for CreateTlasError
impl From<CreateBufferError> for CreateTlasError
source§fn from(source: CreateBufferError) -> Self
fn from(source: CreateBufferError) -> Self
Converts to this type from the input type.
source§impl From<DeviceError> for CreateTlasError
impl From<DeviceError> for CreateTlasError
source§fn from(source: DeviceError) -> Self
fn from(source: DeviceError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl RefUnwindSafe for CreateTlasError
impl Send for CreateTlasError
impl Sync for CreateTlasError
impl Unpin for CreateTlasError
impl UnwindSafe for CreateTlasError
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