Struct ash::vk::definitions::IndirectCommandsLayoutCreateInfoNV
source · #[repr(C)]pub struct IndirectCommandsLayoutCreateInfoNV<'a> {
pub s_type: StructureType,
pub p_next: *const c_void,
pub flags: IndirectCommandsLayoutUsageFlagsNV,
pub pipeline_bind_point: PipelineBindPoint,
pub token_count: u32,
pub p_tokens: *const IndirectCommandsLayoutTokenNV<'a>,
pub stream_count: u32,
pub p_stream_strides: *const u32,
pub _marker: PhantomData<&'a ()>,
}
Expand description
Fields§
§s_type: StructureType
§p_next: *const c_void
§flags: IndirectCommandsLayoutUsageFlagsNV
§pipeline_bind_point: PipelineBindPoint
§token_count: u32
§p_tokens: *const IndirectCommandsLayoutTokenNV<'a>
§stream_count: u32
§p_stream_strides: *const u32
§_marker: PhantomData<&'a ()>
Implementations§
source§impl<'a> IndirectCommandsLayoutCreateInfoNV<'a>
impl<'a> IndirectCommandsLayoutCreateInfoNV<'a>
pub fn flags(self, flags: IndirectCommandsLayoutUsageFlagsNV) -> Self
pub fn pipeline_bind_point(self, pipeline_bind_point: PipelineBindPoint) -> Self
pub fn tokens(self, tokens: &'a [IndirectCommandsLayoutTokenNV<'a>]) -> Self
pub fn stream_strides(self, stream_strides: &'a [u32]) -> Self
Trait Implementations§
source§impl<'a> Clone for IndirectCommandsLayoutCreateInfoNV<'a>
impl<'a> Clone for IndirectCommandsLayoutCreateInfoNV<'a>
source§fn clone(&self) -> IndirectCommandsLayoutCreateInfoNV<'a>
fn clone(&self) -> IndirectCommandsLayoutCreateInfoNV<'a>
Returns a copy 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<'a> Debug for IndirectCommandsLayoutCreateInfoNV<'a>
impl<'a> Debug for IndirectCommandsLayoutCreateInfoNV<'a>
source§impl Default for IndirectCommandsLayoutCreateInfoNV<'_>
impl Default for IndirectCommandsLayoutCreateInfoNV<'_>
source§impl<'a> TaggedStructure for IndirectCommandsLayoutCreateInfoNV<'a>
impl<'a> TaggedStructure for IndirectCommandsLayoutCreateInfoNV<'a>
const STRUCTURE_TYPE: StructureType = StructureType::INDIRECT_COMMANDS_LAYOUT_CREATE_INFO_NV
impl<'a> Copy for IndirectCommandsLayoutCreateInfoNV<'a>
impl Send for IndirectCommandsLayoutCreateInfoNV<'_>
impl Sync for IndirectCommandsLayoutCreateInfoNV<'_>
Auto Trait Implementations§
impl<'a> Freeze for IndirectCommandsLayoutCreateInfoNV<'a>
impl<'a> RefUnwindSafe for IndirectCommandsLayoutCreateInfoNV<'a>
impl<'a> Unpin for IndirectCommandsLayoutCreateInfoNV<'a>
impl<'a> UnwindSafe for IndirectCommandsLayoutCreateInfoNV<'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