[][src]Struct cart_tmp_wgt::BindGroupLayoutEntry

pub struct BindGroupLayoutEntry {
    pub binding: u32,
    pub visibility: ShaderStage,
    pub ty: BindingType,
    pub count: Option<u32>,
    pub _non_exhaustive: NonExhaustive,
}

Describes a single binding inside a bind group.

Fields

binding: u32

Binding index. Must match shader index and be unique inside a BindGroupLayout. A binding of index 1, would be described as layout(set = 0, binding = 1) uniform in shaders.

visibility: ShaderStage

Which shader stages can see this binding.

ty: BindingType

The type of the binding

count: Option<u32>

If this value is Some, indicates this entry is an array. Array size must be 1 or greater.

If this value is Some and ty is BindingType::SampledTexture, [Capabilities::SAMPLED_TEXTURE_BINDING_ARRAY] must be supported.

If this value is Some and ty is any other variant, bind group creation will fail.

_non_exhaustive: NonExhaustive

This struct should be partially initalized using the default method, but binding, visibility, and ty should be set.

Implementations

impl BindGroupLayoutEntry[src]

pub fn new(binding: u32, visibility: ShaderStage, ty: BindingType) -> Self[src]

pub fn has_dynamic_offset(&self) -> bool[src]

Trait Implementations

impl Clone for BindGroupLayoutEntry[src]

impl Debug for BindGroupLayoutEntry[src]

impl Eq for BindGroupLayoutEntry[src]

impl PartialEq<BindGroupLayoutEntry> for BindGroupLayoutEntry[src]

impl StructuralEq for BindGroupLayoutEntry[src]

impl StructuralPartialEq for BindGroupLayoutEntry[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.