pub enum TypeGenerator {
Vector {
size: VectorSize,
},
Matrix {
columns: VectorSize,
rows: VectorSize,
},
Array,
Atomic,
Pointer,
SampledTexture {
dim: ImageDimension,
arrayed: bool,
multi: bool,
},
StorageTexture {
dim: ImageDimension,
arrayed: bool,
},
BindingArray,
AccelerationStructure,
RayQuery,
CooperativeMatrix {
columns: CooperativeSize,
rows: CooperativeSize,
},
}Variants§
Vector
Fields
§
size: VectorSizeMatrix
Array
Atomic
Pointer
SampledTexture
StorageTexture
BindingArray
AccelerationStructure
RayQuery
CooperativeMatrix
Trait Implementations§
Source§impl From<TypeGenerator> for PredeclaredType
impl From<TypeGenerator> for PredeclaredType
Source§fn from(value: TypeGenerator) -> Self
fn from(value: TypeGenerator) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TypeGenerator
impl RefUnwindSafe for TypeGenerator
impl Send for TypeGenerator
impl Sync for TypeGenerator
impl Unpin for TypeGenerator
impl UnwindSafe for TypeGenerator
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