#[repr(C)]pub struct VkSubpassDescription {
pub flags: VkSubpassDescriptionFlags,
pub pipelineBindPoint: VkPipelineBindPoint,
pub inputAttachmentCount: u32,
pub pInputAttachments: *const VkAttachmentReference,
pub colorAttachmentCount: u32,
pub pColorAttachments: *const VkAttachmentReference,
pub pResolveAttachments: *const VkAttachmentReference,
pub pDepthStencilAttachment: *const VkAttachmentReference,
pub preserveAttachmentCount: u32,
pub pPreserveAttachments: *const u32,
}
Fields§
§flags: VkSubpassDescriptionFlags
§pipelineBindPoint: VkPipelineBindPoint
§inputAttachmentCount: u32
§pInputAttachments: *const VkAttachmentReference
§colorAttachmentCount: u32
§pColorAttachments: *const VkAttachmentReference
§pResolveAttachments: *const VkAttachmentReference
§pDepthStencilAttachment: *const VkAttachmentReference
§preserveAttachmentCount: u32
§pPreserveAttachments: *const u32
Trait Implementations§
Source§impl Clone for VkSubpassDescription
impl Clone for VkSubpassDescription
Source§fn clone(&self) -> VkSubpassDescription
fn clone(&self) -> VkSubpassDescription
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for VkSubpassDescription
impl Default for VkSubpassDescription
impl Copy for VkSubpassDescription
Auto Trait Implementations§
impl Freeze for VkSubpassDescription
impl RefUnwindSafe for VkSubpassDescription
impl !Send for VkSubpassDescription
impl !Sync for VkSubpassDescription
impl Unpin for VkSubpassDescription
impl UnwindSafe for VkSubpassDescription
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