#[repr(C)]pub struct RenderingInputAttachmentIndexInfo {
pub s_type: StructureType,
pub next: *const c_void,
pub color_attachment_count: u32,
pub color_attachment_input_indices: *const u32,
pub depth_input_attachment_index: *const u32,
pub stencil_input_attachment_index: *const u32,
}Expand description
Fields§
§s_type: StructureType§next: *const c_void§color_attachment_count: u32§color_attachment_input_indices: *const u32§depth_input_attachment_index: *const u32§stencil_input_attachment_index: *const u32Trait Implementations§
Source§impl Clone for RenderingInputAttachmentIndexInfo
impl Clone for RenderingInputAttachmentIndexInfo
Source§fn clone(&self) -> RenderingInputAttachmentIndexInfo
fn clone(&self) -> RenderingInputAttachmentIndexInfo
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 PartialEq for RenderingInputAttachmentIndexInfo
impl PartialEq for RenderingInputAttachmentIndexInfo
Source§fn eq(&self, other: &RenderingInputAttachmentIndexInfo) -> bool
fn eq(&self, other: &RenderingInputAttachmentIndexInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for RenderingInputAttachmentIndexInfo
impl Eq for RenderingInputAttachmentIndexInfo
impl Send for RenderingInputAttachmentIndexInfo
impl StructuralPartialEq for RenderingInputAttachmentIndexInfo
impl Sync for RenderingInputAttachmentIndexInfo
Auto Trait Implementations§
impl Freeze for RenderingInputAttachmentIndexInfo
impl RefUnwindSafe for RenderingInputAttachmentIndexInfo
impl Unpin for RenderingInputAttachmentIndexInfo
impl UnwindSafe for RenderingInputAttachmentIndexInfo
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