#[repr(C)]pub struct PipelineLayoutCreateInfo {
pub sType: StructureType,
pub pNext: *const c_void,
pub flags: PipelineLayoutCreateFlags,
pub setLayoutCount: u32,
pub pSetLayouts: *const DescriptorSetLayout,
pub pushConstantRangeCount: u32,
pub pPushConstantRanges: *const PushConstantRange,
}
Fields§
§sType: StructureType
§pNext: *const c_void
§flags: PipelineLayoutCreateFlags
§setLayoutCount: u32
§pSetLayouts: *const DescriptorSetLayout
§pushConstantRangeCount: u32
§pPushConstantRanges: *const PushConstantRange
Auto Trait Implementations§
impl Freeze for PipelineLayoutCreateInfo
impl RefUnwindSafe for PipelineLayoutCreateInfo
impl !Send for PipelineLayoutCreateInfo
impl !Sync for PipelineLayoutCreateInfo
impl Unpin for PipelineLayoutCreateInfo
impl UnwindSafe for PipelineLayoutCreateInfo
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