pub struct PipelineInputAssemblyStateCreateInfoBuilder<'a> { /* private fields */ }Expand description
Builder for PipelineInputAssemblyStateCreateInfo with lifetime-tied pNext safety.
Implementations§
Source§impl<'a> PipelineInputAssemblyStateCreateInfoBuilder<'a>
impl<'a> PipelineInputAssemblyStateCreateInfoBuilder<'a>
pub fn flags(self, value: PipelineInputAssemblyStateCreateFlags) -> Self
pub fn topology(self, value: PrimitiveTopology) -> Self
pub fn primitive_restart_enable(self, value: bool) -> Self
Sourcepub fn push_next<T: ExtendsPipelineInputAssemblyStateCreateInfo>(
self,
next: &'a mut T,
) -> Self
pub fn push_next<T: ExtendsPipelineInputAssemblyStateCreateInfo>( self, next: &'a mut T, ) -> Self
Prepend a struct to the pNext chain. See PipelineInputAssemblyStateCreateInfo’s Extended By section for valid types.
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> UnsafeUnpin 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