#[repr(C)]pub struct VkRenderingInfo {
pub sType: VkStructureType,
pub pNext: *const c_void,
pub flags: VkRenderingFlags,
pub renderArea: VkRect2D,
pub layerCount: u32,
pub viewMask: u32,
pub colorAttachmentCount: u32,
pub pColorAttachments: *const VkRenderingAttachmentInfo,
pub pDepthAttachment: *const VkRenderingAttachmentInfo,
pub pStencilAttachment: *const VkRenderingAttachmentInfo,
}
Fields§
§sType: VkStructureType
§pNext: *const c_void
§flags: VkRenderingFlags
§renderArea: VkRect2D
§layerCount: u32
§viewMask: u32
§colorAttachmentCount: u32
§pColorAttachments: *const VkRenderingAttachmentInfo
§pDepthAttachment: *const VkRenderingAttachmentInfo
§pStencilAttachment: *const VkRenderingAttachmentInfo
Trait Implementations§
Source§impl Clone for VkRenderingInfo
impl Clone for VkRenderingInfo
Source§fn clone(&self) -> VkRenderingInfo
fn clone(&self) -> VkRenderingInfo
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 VkRenderingInfo
impl Default for VkRenderingInfo
impl Copy for VkRenderingInfo
Auto Trait Implementations§
impl Freeze for VkRenderingInfo
impl RefUnwindSafe for VkRenderingInfo
impl !Send for VkRenderingInfo
impl !Sync for VkRenderingInfo
impl Unpin for VkRenderingInfo
impl UnwindSafe for VkRenderingInfo
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