[][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

Scalar
[]

Number of integral or floating-point kind.

[]

Fields of Scalar

kind: ScalarKindwidth: Bytes
Vector
[]

Vector of numbers.

[]

Fields of Vector

size: VectorSizekind: ScalarKindwidth: Bytes
Matrix
[]

Matrix of numbers.

[]

Fields of Matrix

columns: VectorSizerows: VectorSizekind: ScalarKindwidth: Bytes
Pointer
[]

Pointer to a value.

[]

Fields of Pointer

base: Handle<Type>class: StorageClass
Array
[]

Homogenous list of elements.

[]

Fields of Array

base: Handle<Type>size: ArraySizestride: Option<NonZeroU32>
Struct
[]

User-defined structure.

[]

Fields of Struct

members: Vec<StructMember>
Image
[]

Possibly multidimensional array of texels.

[]

Fields of Image

base: Handle<Type>dim: ImageDimensionflags: ImageFlags
DepthImage
[]

Depth-comparison image.

[]

Fields of DepthImage

dim: ImageDimensionarrayed: bool
Sampler
[]

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][+]

impl<T> Borrow<T> for T where
    T: ?Sized
[src][+]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src][+]

impl<T> From<T> for T[src][+]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src][+]

impl<T> ToOwned for T where
    T: Clone
[src][+]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src][+]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src][+]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.