Struct wgpu_core::binding_model::BindGroupDescriptor [−][src]
pub struct BindGroupDescriptor<'a> {
pub label: Label<'a>,
pub layout: BindGroupLayoutId,
pub entries: Cow<'a, [BindGroupEntry<'a>]>,
}Describes a group of bindings and the resources to be bound.
Fields
label: Label<'a>Debug label of the bind group. This will show up in graphics debuggers for easy identification.
layout: BindGroupLayoutIdThe BindGroupLayout that corresponds to this bind group.
entries: Cow<'a, [BindGroupEntry<'a>]>The resources to bind to this bind group.
Trait Implementations
impl<'a> Clone for BindGroupDescriptor<'a>[src]
impl<'a> Clone for BindGroupDescriptor<'a>[src]fn clone(&self) -> BindGroupDescriptor<'a>[src]
fn clone(&self) -> BindGroupDescriptor<'a>[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]Performs copy-assignment from source. Read more
Auto Trait Implementations
impl<'a> !RefUnwindSafe for BindGroupDescriptor<'a>
impl<'a> Send for BindGroupDescriptor<'a>
impl<'a> Sync for BindGroupDescriptor<'a>
impl<'a> Unpin for BindGroupDescriptor<'a>
impl<'a> !UnwindSafe for BindGroupDescriptor<'a>
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more