pub struct DescriptorSetLayoutCreateInfo {
pub flags: DescriptorSetLayoutCreateFlags,
pub bindings: Vec<DescriptorSetLayoutBinding>,
pub chain: Option<DescriptorSetLayoutCreateInfoChain>,
}
Expand description
Fields§
§flags: DescriptorSetLayoutCreateFlags
§bindings: Vec<DescriptorSetLayoutBinding>
§chain: Option<DescriptorSetLayoutCreateInfoChain>
Trait Implementations§
Source§impl Clone for DescriptorSetLayoutCreateInfo
impl Clone for DescriptorSetLayoutCreateInfo
Source§fn clone(&self) -> DescriptorSetLayoutCreateInfo
fn clone(&self) -> DescriptorSetLayoutCreateInfo
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 PartialEq for DescriptorSetLayoutCreateInfo
impl PartialEq for DescriptorSetLayoutCreateInfo
Source§fn eq(&self, other: &DescriptorSetLayoutCreateInfo) -> bool
fn eq(&self, other: &DescriptorSetLayoutCreateInfo) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescriptorSetLayoutCreateInfo
Auto Trait Implementations§
impl Freeze for DescriptorSetLayoutCreateInfo
impl !RefUnwindSafe for DescriptorSetLayoutCreateInfo
impl Send for DescriptorSetLayoutCreateInfo
impl Sync for DescriptorSetLayoutCreateInfo
impl Unpin for DescriptorSetLayoutCreateInfo
impl !UnwindSafe for DescriptorSetLayoutCreateInfo
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