pub struct PipelineLayout {
pub bind_group_layouts: Vec<BindGroupLayoutDesc>,
}Expand description
Pipeline layout description.
Fields§
§bind_group_layouts: Vec<BindGroupLayoutDesc>Trait Implementations§
Source§impl Clone for PipelineLayout
impl Clone for PipelineLayout
Source§fn clone(&self) -> PipelineLayout
fn clone(&self) -> PipelineLayout
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 moreSource§impl Debug for PipelineLayout
impl Debug for PipelineLayout
Source§impl Default for PipelineLayout
impl Default for PipelineLayout
Source§fn default() -> PipelineLayout
fn default() -> PipelineLayout
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PipelineLayout
impl RefUnwindSafe for PipelineLayout
impl Send for PipelineLayout
impl Sync for PipelineLayout
impl Unpin for PipelineLayout
impl UnsafeUnpin 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