[][src]Enum spirv_cross::spirv::Type

pub enum Type {
    Unknown,
    Void,
    Boolean {
        array: Vec<u32>,
    },
    Char {
        array: Vec<u32>,
    },
    Int {
        array: Vec<u32>,
    },
    UInt {
        array: Vec<u32>,
    },
    Int64 {
        array: Vec<u32>,
    },
    UInt64 {
        array: Vec<u32>,
    },
    AtomicCounter {
        array: Vec<u32>,
    },
    Half {
        array: Vec<u32>,
    },
    Float {
        array: Vec<u32>,
    },
    Double {
        array: Vec<u32>,
    },
    Struct {
        member_types: Vec<u32>,
        array: Vec<u32>,
    },
    Image {
        array: Vec<u32>,
    },
    SampledImage {
        array: Vec<u32>,
    },
    Sampler {
        array: Vec<u32>,
    },
    SByte {
        array: Vec<u32>,
    },
    UByte {
        array: Vec<u32>,
    },
    Short {
        array: Vec<u32>,
    },
    UShort {
        array: Vec<u32>,
    },
    ControlPointArray,
    AccelerationStructureNv,
}

Variants

UnknownVoidBoolean

Fields of Boolean

array: Vec<u32>
Char

Fields of Char

array: Vec<u32>
Int

Fields of Int

array: Vec<u32>
UInt

Fields of UInt

array: Vec<u32>
Int64

Fields of Int64

array: Vec<u32>
UInt64

Fields of UInt64

array: Vec<u32>
AtomicCounter

Fields of AtomicCounter

array: Vec<u32>
Half

Fields of Half

array: Vec<u32>
Float

Fields of Float

array: Vec<u32>
Double

Fields of Double

array: Vec<u32>
Struct

Fields of Struct

member_types: Vec<u32>array: Vec<u32>
Image

Fields of Image

array: Vec<u32>
SampledImage

Fields of SampledImage

array: Vec<u32>
Sampler

Fields of Sampler

array: Vec<u32>
SByte

Fields of SByte

array: Vec<u32>
UByte

Fields of UByte

array: Vec<u32>
Short

Fields of Short

array: Vec<u32>
UShort

Fields of UShort

array: Vec<u32>
ControlPointArrayAccelerationStructureNv

Trait Implementations

impl Clone for Type[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Type[src]

Auto Trait Implementations

impl Send for Type

impl Sync for Type

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]