#[repr(C)]pub struct RenderPassInputAttachmentAspectCreateInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub aspect_reference_count: u32,
pub p_aspect_references: *const InputAttachmentAspectReference,
}Expand description
VkRenderPassInputAttachmentAspectCreateInfo
Provided by VK_GRAPHICS_VERSION_1_1.
§Extends
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_RENDER_PASS_INPUT_ATTACHMENT_ASPECT_CREATE_INFO.
p_next: *const c_voidOptional, may be null.
aspect_reference_count: u32Length of p_aspect_references.
p_aspect_references: *const InputAttachmentAspectReferenceImplementations§
Source§impl RenderPassInputAttachmentAspectCreateInfo
impl RenderPassInputAttachmentAspectCreateInfo
Sourcepub fn builder<'a>() -> RenderPassInputAttachmentAspectCreateInfoBuilder<'a>
pub fn builder<'a>() -> RenderPassInputAttachmentAspectCreateInfoBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for RenderPassInputAttachmentAspectCreateInfo
impl Clone for RenderPassInputAttachmentAspectCreateInfo
Source§fn clone(&self) -> RenderPassInputAttachmentAspectCreateInfo
fn clone(&self) -> RenderPassInputAttachmentAspectCreateInfo
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 Default for RenderPassInputAttachmentAspectCreateInfo
impl Default for RenderPassInputAttachmentAspectCreateInfo
Source§fn default() -> RenderPassInputAttachmentAspectCreateInfo
fn default() -> RenderPassInputAttachmentAspectCreateInfo
Returns the “default value” for a type. Read more
impl Copy for RenderPassInputAttachmentAspectCreateInfo
impl ExtendsRenderPassCreateInfo for RenderPassInputAttachmentAspectCreateInfo
Auto Trait Implementations§
impl Freeze for RenderPassInputAttachmentAspectCreateInfo
impl RefUnwindSafe for RenderPassInputAttachmentAspectCreateInfo
impl !Send for RenderPassInputAttachmentAspectCreateInfo
impl !Sync for RenderPassInputAttachmentAspectCreateInfo
impl Unpin for RenderPassInputAttachmentAspectCreateInfo
impl UnsafeUnpin for RenderPassInputAttachmentAspectCreateInfo
impl UnwindSafe for RenderPassInputAttachmentAspectCreateInfo
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