pub struct BindGroupLayoutDescriptor<'a> {
pub label: Label<'a>,
pub entries: Cow<'a, [BindGroupLayoutEntry]>,
}
Expand description
Describes a BindGroupLayout
.
Fields§
§label: Label<'a>
Debug label of the bind group layout.
This will show up in graphics debuggers for easy identification.
entries: Cow<'a, [BindGroupLayoutEntry]>
Array of entries in this BindGroupLayout
Trait Implementations§
source§impl<'a> Clone for BindGroupLayoutDescriptor<'a>
impl<'a> Clone for BindGroupLayoutDescriptor<'a>
source§fn clone(&self) -> BindGroupLayoutDescriptor<'a>
fn clone(&self) -> BindGroupLayoutDescriptor<'a>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl<'a> Freeze for BindGroupLayoutDescriptor<'a>
impl<'a> RefUnwindSafe for BindGroupLayoutDescriptor<'a>
impl<'a> Send for BindGroupLayoutDescriptor<'a>
impl<'a> Sync for BindGroupLayoutDescriptor<'a>
impl<'a> Unpin for BindGroupLayoutDescriptor<'a>
impl<'a> UnwindSafe for BindGroupLayoutDescriptor<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more