#[repr(C)]pub struct RenderingInputAttachmentIndexInfo<'a> {
pub s_type: StructureType,
pub p_next: *const c_void,
pub color_attachment_count: u32,
pub p_color_attachment_input_indices: *const u32,
pub p_depth_input_attachment_index: *const u32,
pub p_stencil_input_attachment_index: *const u32,
pub _marker: PhantomData<&'a ()>,
}Expand description
Fields§
§s_type: StructureType§p_next: *const c_void§color_attachment_count: u32§p_color_attachment_input_indices: *const u32§p_depth_input_attachment_index: *const u32§p_stencil_input_attachment_index: *const u32§_marker: PhantomData<&'a ()>Implementations§
Source§impl<'a> RenderingInputAttachmentIndexInfo<'a>
impl<'a> RenderingInputAttachmentIndexInfo<'a>
pub fn color_attachment_input_indices( self, color_attachment_input_indices: &'a [u32], ) -> Self
pub fn depth_input_attachment_index( self, depth_input_attachment_index: &'a u32, ) -> Self
pub fn stencil_input_attachment_index( self, stencil_input_attachment_index: &'a u32, ) -> Self
Trait Implementations§
Source§impl<'a> Clone for RenderingInputAttachmentIndexInfo<'a>
impl<'a> Clone for RenderingInputAttachmentIndexInfo<'a>
Source§fn clone(&self) -> RenderingInputAttachmentIndexInfo<'a>
fn clone(&self) -> RenderingInputAttachmentIndexInfo<'a>
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<'a> Debug for RenderingInputAttachmentIndexInfo<'a>
impl<'a> Debug for RenderingInputAttachmentIndexInfo<'a>
Source§impl Default for RenderingInputAttachmentIndexInfo<'_>
impl Default for RenderingInputAttachmentIndexInfo<'_>
Source§impl<'a> TaggedStructure for RenderingInputAttachmentIndexInfo<'a>
impl<'a> TaggedStructure for RenderingInputAttachmentIndexInfo<'a>
const STRUCTURE_TYPE: StructureType = StructureType::RENDERING_INPUT_ATTACHMENT_INDEX_INFO
impl<'a> Copy for RenderingInputAttachmentIndexInfo<'a>
impl ExtendsCommandBufferInheritanceInfo for RenderingInputAttachmentIndexInfo<'_>
impl ExtendsGraphicsPipelineCreateInfo for RenderingInputAttachmentIndexInfo<'_>
impl Send for RenderingInputAttachmentIndexInfo<'_>
impl Sync for RenderingInputAttachmentIndexInfo<'_>
Auto Trait Implementations§
impl<'a> Freeze for RenderingInputAttachmentIndexInfo<'a>
impl<'a> RefUnwindSafe for RenderingInputAttachmentIndexInfo<'a>
impl<'a> Unpin for RenderingInputAttachmentIndexInfo<'a>
impl<'a> UnwindSafe for RenderingInputAttachmentIndexInfo<'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