#[repr(C)]pub struct VkPipelineLayoutCreateInfo {
pub sType: VkStructureType,
pub pNext: *const c_void,
pub flags: VkPipelineLayoutCreateFlags,
pub setLayoutCount: u32,
pub pSetLayouts: *const VkDescriptorSetLayout,
pub pushConstantRangeCount: u32,
pub pPushConstantRanges: *const VkPushConstantRange,
}
Fields§
§sType: VkStructureType
§pNext: *const c_void
§flags: VkPipelineLayoutCreateFlags
§setLayoutCount: u32
§pSetLayouts: *const VkDescriptorSetLayout
§pushConstantRangeCount: u32
§pPushConstantRanges: *const VkPushConstantRange
Trait Implementations§
Source§impl Clone for VkPipelineLayoutCreateInfo
impl Clone for VkPipelineLayoutCreateInfo
Source§fn clone(&self) -> VkPipelineLayoutCreateInfo
fn clone(&self) -> VkPipelineLayoutCreateInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for VkPipelineLayoutCreateInfo
impl Default for VkPipelineLayoutCreateInfo
impl Copy for VkPipelineLayoutCreateInfo
Auto Trait Implementations§
impl Freeze for VkPipelineLayoutCreateInfo
impl RefUnwindSafe for VkPipelineLayoutCreateInfo
impl !Send for VkPipelineLayoutCreateInfo
impl !Sync for VkPipelineLayoutCreateInfo
impl Unpin for VkPipelineLayoutCreateInfo
impl UnwindSafe for VkPipelineLayoutCreateInfo
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