Struct wgpu_types::BindGroupLayoutEntry [−][src]
Describes a single binding inside a bind group.
Fields
binding: u32Binding 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: ShaderStageWhich shader stages can see this binding.
ty: BindingTypeThe type of the binding
count: Option<NonZeroU32>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::Texture, Features::SAMPLED_TEXTURE_BINDING_ARRAY must be supported.
If this value is Some and ty is any other variant, bind group creation will fail.
Trait Implementations
impl Clone for BindGroupLayoutEntry[src]
fn clone(&self) -> BindGroupLayoutEntry[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for BindGroupLayoutEntry[src]
impl Eq for BindGroupLayoutEntry[src]
impl Hash for BindGroupLayoutEntry[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl PartialEq<BindGroupLayoutEntry> for BindGroupLayoutEntry[src]
fn eq(&self, other: &BindGroupLayoutEntry) -> bool[src]
fn ne(&self, other: &BindGroupLayoutEntry) -> bool[src]
impl StructuralEq for BindGroupLayoutEntry[src]
impl StructuralPartialEq for BindGroupLayoutEntry[src]
Auto Trait Implementations
impl RefUnwindSafe for BindGroupLayoutEntry[src]
impl Send for BindGroupLayoutEntry[src]
impl Sync for BindGroupLayoutEntry[src]
impl Unpin for BindGroupLayoutEntry[src]
impl UnwindSafe for BindGroupLayoutEntry[src]
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,
pub fn borrow_mut(&mut self) -> &mut T[src]
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,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,