#[repr(transparent)]pub struct PipelineInputAssemblyStateCreateInfoBuilder<'a> { /* private fields */ }Implementations
sourceimpl<'a> PipelineInputAssemblyStateCreateInfoBuilder<'a>
impl<'a> PipelineInputAssemblyStateCreateInfoBuilder<'a>
pub fn flags(
self,
flags: PipelineInputAssemblyStateCreateFlags
) -> PipelineInputAssemblyStateCreateInfoBuilder<'a>
pub fn topology(
self,
topology: PrimitiveTopology
) -> PipelineInputAssemblyStateCreateInfoBuilder<'a>
pub fn primitive_restart_enable(
self,
primitive_restart_enable: bool
) -> PipelineInputAssemblyStateCreateInfoBuilder<'a>
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
sourceimpl<'a> Deref for PipelineInputAssemblyStateCreateInfoBuilder<'a>
impl<'a> Deref for PipelineInputAssemblyStateCreateInfoBuilder<'a>
type Target = PipelineInputAssemblyStateCreateInfo
type Target = PipelineInputAssemblyStateCreateInfo
The resulting type after dereferencing.
sourcefn deref(
&self
) -> &<PipelineInputAssemblyStateCreateInfoBuilder<'a> as Deref>::Target
fn deref(
&self
) -> &<PipelineInputAssemblyStateCreateInfoBuilder<'a> as Deref>::Target
Dereferences the value.
sourceimpl<'a> DerefMut for PipelineInputAssemblyStateCreateInfoBuilder<'a>
impl<'a> DerefMut for PipelineInputAssemblyStateCreateInfoBuilder<'a>
sourcefn deref_mut(
&mut self
) -> &mut <PipelineInputAssemblyStateCreateInfoBuilder<'a> as Deref>::Target
fn deref_mut(
&mut self
) -> &mut <PipelineInputAssemblyStateCreateInfoBuilder<'a> as Deref>::Target
Mutably dereferences the value.
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more