pub struct PipelineInputAssemblyStateCreateInfoBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> PipelineInputAssemblyStateCreateInfoBuilder<'a>
impl<'a> PipelineInputAssemblyStateCreateInfoBuilder<'a>
pub fn flags(self, flags: PipelineInputAssemblyStateCreateFlags) -> Self
pub fn topology(self, topology: PrimitiveTopology) -> Self
pub fn primitive_restart_enable(self, primitive_restart_enable: bool) -> Self
sourcepub fn build(self) -> PipelineInputAssemblyStateCreateInfo
pub fn build(self) -> PipelineInputAssemblyStateCreateInfo
Calling build will discard all the lifetime information. Only call this if
necessary! Builders implement Deref
targeting their corresponding Vulkan struct,
so references to builders can be passed directly to Vulkan functions.
Trait Implementations§
source§impl<'a> Deref for PipelineInputAssemblyStateCreateInfoBuilder<'a>
impl<'a> Deref for PipelineInputAssemblyStateCreateInfoBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for PipelineInputAssemblyStateCreateInfoBuilder<'a>
impl<'a> RefUnwindSafe for PipelineInputAssemblyStateCreateInfoBuilder<'a>
impl<'a> !Send for PipelineInputAssemblyStateCreateInfoBuilder<'a>
impl<'a> !Sync for PipelineInputAssemblyStateCreateInfoBuilder<'a>
impl<'a> Unpin for PipelineInputAssemblyStateCreateInfoBuilder<'a>
impl<'a> UnwindSafe for PipelineInputAssemblyStateCreateInfoBuilder<'a>
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