pub struct PipelineLayoutDescriptor<'a> {
pub bind_group_layouts: &'a [&'a BindGroupLayout],
}
Expand description
Describes a pipeline layout.
A PipelineLayoutDescriptor
can be passed to Device::create_pipeline_layout
to obtain a
PipelineLayout
.
Fields§
§bind_group_layouts: &'a [&'a BindGroupLayout]
Bind groups that this pipeline uses. The first entry will provide all the bindings for “set = 0”, second entry will provide all the bindings for “set = 1” etc.
Trait Implementations§
Source§impl<'a> Clone for PipelineLayoutDescriptor<'a>
impl<'a> Clone for PipelineLayoutDescriptor<'a>
Source§fn clone(&self) -> PipelineLayoutDescriptor<'a>
fn clone(&self) -> PipelineLayoutDescriptor<'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 PipelineLayoutDescriptor<'a>
impl<'a> !RefUnwindSafe for PipelineLayoutDescriptor<'a>
impl<'a> Send for PipelineLayoutDescriptor<'a>
impl<'a> Sync for PipelineLayoutDescriptor<'a>
impl<'a> Unpin for PipelineLayoutDescriptor<'a>
impl<'a> !UnwindSafe for PipelineLayoutDescriptor<'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