Struct bedrock::vk::VkRenderPassCreateInfo [] [src]

#[repr(C)]
pub struct VkRenderPassCreateInfo { pub sType: VkStructureType, pub pNext: *const c_void, pub flags: VkRenderPassCreateFlags, pub attachmentCount: u32, pub pAttachments: *const VkAttachmentDescription, pub subpassCount: u32, pub pSubpasses: *const VkSubpassDescription, pub dependencyCount: u32, pub pDependencies: *const VkSubpassDependency, }

Fields

Trait Implementations

impl Debug for VkRenderPassCreateInfo
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for VkRenderPassCreateInfo
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl PartialEq for VkRenderPassCreateInfo
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Eq for VkRenderPassCreateInfo
[src]

impl Default for VkRenderPassCreateInfo
[src]

[src]

Returns the "default value" for a type. Read more

Auto Trait Implementations