pub struct PipelineLayout {
pub(crate) inner: DispatchPipelineLayout,
}
Expand description
Handle to a pipeline layout.
A PipelineLayout
object describes the available binding groups of a pipeline.
It can be created with Device::create_pipeline_layout
.
Corresponds to WebGPU GPUPipelineLayout
.
Fields§
§inner: DispatchPipelineLayout
Trait Implementations§
source§impl Clone for PipelineLayout
impl Clone for PipelineLayout
source§fn clone(&self) -> PipelineLayout
fn clone(&self) -> PipelineLayout
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 moresource§impl Debug for PipelineLayout
impl Debug for PipelineLayout
source§impl Hash for PipelineLayout
impl Hash for PipelineLayout
source§impl Ord for PipelineLayout
impl Ord for PipelineLayout
source§impl PartialEq for PipelineLayout
impl PartialEq for PipelineLayout
source§impl PartialOrd for PipelineLayout
impl PartialOrd for PipelineLayout
impl Eq for PipelineLayout
Auto Trait Implementations§
impl Freeze for PipelineLayout
impl !RefUnwindSafe for PipelineLayout
impl Send for PipelineLayout
impl Sync for PipelineLayout
impl Unpin for PipelineLayout
impl !UnwindSafe for PipelineLayout
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.