pub enum ExecutionModel {
Show 15 variants
Vertex,
TessellationControl,
TessellationEvaluation,
Geometry,
Fragment,
GLCompute,
Kernel,
TaskNV,
MeshNV,
RayGenerationKHR,
IntersectionKHR,
AnyHitKHR,
ClosestHitKHR,
MissKHR,
CallableKHR,
}Expand description
SPIR-V execution models (shader stage).
Variants§
Vertex
TessellationControl
TessellationEvaluation
Geometry
Fragment
GLCompute
Kernel
TaskNV
MeshNV
RayGenerationKHR
IntersectionKHR
AnyHitKHR
ClosestHitKHR
MissKHR
CallableKHR
Trait Implementations§
Source§impl Clone for ExecutionModel
impl Clone for ExecutionModel
Source§fn clone(&self) -> ExecutionModel
fn clone(&self) -> ExecutionModel
Returns a duplicate 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 ExecutionModel
impl Debug for ExecutionModel
Source§impl PartialEq for ExecutionModel
impl PartialEq for ExecutionModel
impl StructuralPartialEq for ExecutionModel
Auto Trait Implementations§
impl Freeze for ExecutionModel
impl RefUnwindSafe for ExecutionModel
impl Send for ExecutionModel
impl Sync for ExecutionModel
impl Unpin for ExecutionModel
impl UnsafeUnpin for ExecutionModel
impl UnwindSafe for ExecutionModel
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