#[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 PushConstantRangeImplementations§
Source§impl PipelineLayoutCreateInfo
impl PipelineLayoutCreateInfo
pub fn new() -> Self
pub fn sType(self, sType: StructureType) -> Self
pub fn pNext(self, pNext: *const c_void) -> Self
pub fn flags(self, flags: PipelineLayoutCreateFlags) -> Self
pub fn setLayoutCount(self, setLayoutCount: u32) -> Self
pub fn pSetLayouts(self, pSetLayouts: *const DescriptorSetLayout) -> Self
pub fn pushConstantRangeCount(self, pushConstantRangeCount: u32) -> Self
pub fn pPushConstantRanges( self, pPushConstantRanges: *const PushConstantRange, ) -> Self
Trait Implementations§
Source§impl Clone for PipelineLayoutCreateInfo
impl Clone for PipelineLayoutCreateInfo
Source§fn clone(&self) -> PipelineLayoutCreateInfo
fn clone(&self) -> PipelineLayoutCreateInfo
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 PipelineLayoutCreateInfo
impl Debug for PipelineLayoutCreateInfo
Source§impl Default for PipelineLayoutCreateInfo
impl Default for PipelineLayoutCreateInfo
Source§fn default() -> PipelineLayoutCreateInfo
fn default() -> PipelineLayoutCreateInfo
Returns the “default value” for a type. Read more
impl Copy for PipelineLayoutCreateInfo
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