[−][src]Enum naga::TypeInner
pub enum TypeInner { Scalar { kind: ScalarKind, width: Bytes, }, Vector { size: VectorSize, kind: ScalarKind, width: Bytes, }, Matrix { columns: VectorSize, rows: VectorSize, kind: ScalarKind, width: Bytes, }, Pointer { base: Handle<Type>, class: StorageClass, }, Array { base: Handle<Type>, size: ArraySize, stride: Option<NonZeroU32>, }, Struct { members: Vec<StructMember>, }, Image { base: Handle<Type>, dim: ImageDimension, flags: ImageFlags, }, DepthImage { dim: ImageDimension, arrayed: bool, }, Sampler { comparison: bool, }, }
Enum with additional information, depending on the kind of type.
Variants
Number of integral or floating-point kind.
Fields of Scalar
kind: ScalarKind
width: Bytes
Vector of numbers.
Fields of Vector
Matrix of numbers.
Fields of Matrix
Pointer to a value.
Fields of Pointer
base: Handle<Type>
class: StorageClass
Homogenous list of elements.
Fields of Array
User-defined structure.
Fields of Struct
members: Vec<StructMember>
Possibly multidimensional array of texels.
Fields of Image
Depth-comparison image.
Fields of DepthImage
dim: ImageDimension
arrayed: bool
Can be used to sample values from images.
Fields of Sampler
comparison: bool
Trait Implementations
impl Clone for TypeInner
[src][+]
impl Debug for TypeInner
[src][+]
impl PartialEq<TypeInner> for TypeInner
[src][+]
impl StructuralPartialEq for TypeInner
[src]
Auto Trait Implementations
impl RefUnwindSafe for TypeInner
impl Send for TypeInner
impl Sync for TypeInner
impl Unpin for TypeInner
impl UnwindSafe for TypeInner
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,