[][src]Enum cart_tmp_nga::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: Dim,
        flags: ImageFlags,
    },
    Sampler {
        comparison: bool,
    },
}

Variants

Scalar

Fields of Scalar

kind: ScalarKindwidth: Bytes
Vector

Fields of Vector

size: VectorSizekind: ScalarKindwidth: Bytes
Matrix

Fields of Matrix

columns: VectorSizerows: VectorSizekind: ScalarKindwidth: Bytes
Pointer

Fields of Pointer

base: Handle<Type>class: StorageClass
Array

Fields of Array

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

Fields of Struct

members: Vec<StructMember>
Image

Fields of Image

base: Handle<Type>dim: Dimflags: ImageFlags
Sampler

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

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.