pub struct InputAssemblyState {
pub flags: PipelineInputAssemblyStateCreateFlags,
pub topology: PrimitiveTopology,
pub primitive_restart_enable: bool,
}Expand description
Fields§
§flags: PipelineInputAssemblyStateCreateFlags§topology: PrimitiveTopology§primitive_restart_enable: boolImplementations§
Source§impl InputAssemblyState
impl InputAssemblyState
pub fn write_create_info_builder<'a>( &self, builder: PipelineInputAssemblyStateCreateInfoBuilder<'a>, ) -> PipelineInputAssemblyStateCreateInfoBuilder<'a>
pub fn create_info_builder( &self, ) -> PipelineInputAssemblyStateCreateInfoBuilder<'_>
pub fn from_create_info_builder( value: &PipelineInputAssemblyStateCreateInfoBuilder<'_>, ) -> Self
Trait Implementations§
Source§impl Clone for InputAssemblyState
impl Clone for InputAssemblyState
Source§fn clone(&self) -> InputAssemblyState
fn clone(&self) -> InputAssemblyState
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 InputAssemblyState
impl Debug for InputAssemblyState
Auto Trait Implementations§
impl Freeze for InputAssemblyState
impl RefUnwindSafe for InputAssemblyState
impl Send for InputAssemblyState
impl Sync for InputAssemblyState
impl Unpin for InputAssemblyState
impl UnwindSafe for InputAssemblyState
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