Struct wgpu_hal::PipelineLayoutDescriptor
source · pub struct PipelineLayoutDescriptor<'a, B: DynBindGroupLayout + ?Sized> {
pub label: Label<'a>,
pub flags: PipelineLayoutFlags,
pub bind_group_layouts: &'a [&'a B],
pub push_constant_ranges: &'a [PushConstantRange],
}
Fields§
§label: Label<'a>
§flags: PipelineLayoutFlags
§bind_group_layouts: &'a [&'a B]
§push_constant_ranges: &'a [PushConstantRange]
Trait Implementations§
source§impl<'a, B: Clone + DynBindGroupLayout + ?Sized> Clone for PipelineLayoutDescriptor<'a, B>
impl<'a, B: Clone + DynBindGroupLayout + ?Sized> Clone for PipelineLayoutDescriptor<'a, B>
source§fn clone(&self) -> PipelineLayoutDescriptor<'a, B>
fn clone(&self) -> PipelineLayoutDescriptor<'a, B>
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, B> Freeze for PipelineLayoutDescriptor<'a, B>where
B: ?Sized,
impl<'a, B> RefUnwindSafe for PipelineLayoutDescriptor<'a, B>where
B: RefUnwindSafe + ?Sized,
impl<'a, B> Send for PipelineLayoutDescriptor<'a, B>where
B: ?Sized,
impl<'a, B> Sync for PipelineLayoutDescriptor<'a, B>where
B: ?Sized,
impl<'a, B> Unpin for PipelineLayoutDescriptor<'a, B>where
B: ?Sized,
impl<'a, B> UnwindSafe for PipelineLayoutDescriptor<'a, B>where
B: RefUnwindSafe + ?Sized,
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