#[repr(i32)]pub enum ExecutionModel {
Vertex = 0,
TessellationControl = 1,
TessellationEvaluation = 2,
Geometry = 3,
Fragment = 4,
GlCompute = 5,
Kernel = 6,
RayGenerationKHR = 5_313,
IntersectionKHR = 5_314,
AnyHitKHR = 5_315,
ClosestHitKHR = 5_316,
MissKHR = 5_317,
}Expand description
A stage or compute kernel.
Variants§
Vertex = 0
TessellationControl = 1
TessellationEvaluation = 2
Geometry = 3
Fragment = 4
GlCompute = 5
Kernel = 6
RayGenerationKHR = 5_313
IntersectionKHR = 5_314
AnyHitKHR = 5_315
ClosestHitKHR = 5_316
MissKHR = 5_317
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 Hash for ExecutionModel
impl Hash for ExecutionModel
Source§impl Ord for ExecutionModel
impl Ord for ExecutionModel
Source§fn cmp(&self, other: &ExecutionModel) -> Ordering
fn cmp(&self, other: &ExecutionModel) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ExecutionModel
impl PartialEq for ExecutionModel
Source§impl PartialOrd for ExecutionModel
impl PartialOrd for ExecutionModel
impl Copy for ExecutionModel
impl Eq 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 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