[−][src]Struct wgpu::BindGroupLayoutEntry
A description of a single binding inside a bind group.
Fields
binding: u32
visibility: ShaderStage
ty: BindingType
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
, the SAMPLED_TEXTURE_BINDING_ARRAY extension must be enabled.
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.
Methods
impl BindGroupLayoutEntry
[src]
pub fn new(
binding: u32,
visibility: ShaderStage,
ty: BindingType
) -> BindGroupLayoutEntry
[src]
binding: u32,
visibility: ShaderStage,
ty: BindingType
) -> BindGroupLayoutEntry
pub fn has_dynamic_offset(&self) -> bool
[src]
Trait Implementations
impl Clone for BindGroupLayoutEntry
[src]
fn clone(&self) -> BindGroupLayoutEntry
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Debug for BindGroupLayoutEntry
[src]
impl Eq for BindGroupLayoutEntry
[src]
impl PartialEq<BindGroupLayoutEntry> for BindGroupLayoutEntry
[src]
fn eq(&self, other: &BindGroupLayoutEntry) -> bool
[src]
fn ne(&self, other: &BindGroupLayoutEntry) -> bool
[src]
impl Serialize for BindGroupLayoutEntry
[src]
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
[src]
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
impl StructuralEq for BindGroupLayoutEntry
[src]
impl StructuralPartialEq for BindGroupLayoutEntry
[src]
Auto Trait Implementations
impl RefUnwindSafe for BindGroupLayoutEntry
impl Send for BindGroupLayoutEntry
impl Sync for BindGroupLayoutEntry
impl Unpin for BindGroupLayoutEntry
impl UnwindSafe for BindGroupLayoutEntry
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,
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.
fn to_owned(&self) -> T
[src]
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.
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>,