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 duplicate 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