Struct wgpu_hal::PipelineLayoutDescriptor
source · [−]pub struct PipelineLayoutDescriptor<'a, A: Api> {
pub label: Label<'a>,
pub flags: PipelineLayoutFlags,
pub bind_group_layouts: &'a [&'a A::BindGroupLayout],
pub push_constant_ranges: &'a [PushConstantRange],
}
Fields
label: Label<'a>
flags: PipelineLayoutFlags
bind_group_layouts: &'a [&'a A::BindGroupLayout]
push_constant_ranges: &'a [PushConstantRange]
Trait Implementations
sourceimpl<'a, A: Clone + Api> Clone for PipelineLayoutDescriptor<'a, A> where
A::BindGroupLayout: Clone,
impl<'a, A: Clone + Api> Clone for PipelineLayoutDescriptor<'a, A> where
A::BindGroupLayout: Clone,
sourcefn clone(&self) -> PipelineLayoutDescriptor<'a, A>
fn clone(&self) -> PipelineLayoutDescriptor<'a, A>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
Auto Trait Implementations
impl<'a, A> RefUnwindSafe for PipelineLayoutDescriptor<'a, A> where
<A as Api>::BindGroupLayout: RefUnwindSafe,
impl<'a, A> Send for PipelineLayoutDescriptor<'a, A>
impl<'a, A> Sync for PipelineLayoutDescriptor<'a, A>
impl<'a, A> Unpin for PipelineLayoutDescriptor<'a, A>
impl<'a, A> UnwindSafe for PipelineLayoutDescriptor<'a, A> where
<A as Api>::BindGroupLayout: RefUnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more