Struct ash::vk::RenderingInputAttachmentIndexInfoKHR
source · #[repr(C)]pub struct RenderingInputAttachmentIndexInfoKHR<'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> RenderingInputAttachmentIndexInfoKHR<'a>
impl<'a> RenderingInputAttachmentIndexInfoKHR<'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 RenderingInputAttachmentIndexInfoKHR<'a>
impl<'a> Clone for RenderingInputAttachmentIndexInfoKHR<'a>
source§fn clone(&self) -> RenderingInputAttachmentIndexInfoKHR<'a>
fn clone(&self) -> RenderingInputAttachmentIndexInfoKHR<'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 RenderingInputAttachmentIndexInfoKHR<'a>
impl<'a> Debug for RenderingInputAttachmentIndexInfoKHR<'a>
source§impl Default for RenderingInputAttachmentIndexInfoKHR<'_>
impl Default for RenderingInputAttachmentIndexInfoKHR<'_>
source§impl<'a> TaggedStructure for RenderingInputAttachmentIndexInfoKHR<'a>
impl<'a> TaggedStructure for RenderingInputAttachmentIndexInfoKHR<'a>
const STRUCTURE_TYPE: StructureType = StructureType::RENDERING_INPUT_ATTACHMENT_INDEX_INFO_KHR
impl<'a> Copy for RenderingInputAttachmentIndexInfoKHR<'a>
impl ExtendsCommandBufferInheritanceInfo for RenderingInputAttachmentIndexInfoKHR<'_>
impl ExtendsGraphicsPipelineCreateInfo for RenderingInputAttachmentIndexInfoKHR<'_>
impl Send for RenderingInputAttachmentIndexInfoKHR<'_>
impl Sync for RenderingInputAttachmentIndexInfoKHR<'_>
Auto Trait Implementations§
impl<'a> Freeze for RenderingInputAttachmentIndexInfoKHR<'a>
impl<'a> RefUnwindSafe for RenderingInputAttachmentIndexInfoKHR<'a>
impl<'a> Unpin for RenderingInputAttachmentIndexInfoKHR<'a>
impl<'a> UnwindSafe for RenderingInputAttachmentIndexInfoKHR<'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