#[repr(C)]pub struct VkCommandBufferInheritanceRenderingInfo {
pub sType: VkStructureType,
pub pNext: *const c_void,
pub flags: VkRenderingFlags,
pub viewMask: u32,
pub colorAttachmentCount: u32,
pub pColorAttachmentFormats: *const VkFormat,
pub depthAttachmentFormat: VkFormat,
pub stencilAttachmentFormat: VkFormat,
pub rasterizationSamples: VkSampleCountFlagBits,
}
Fields§
§sType: VkStructureType
§pNext: *const c_void
§flags: VkRenderingFlags
§viewMask: u32
§colorAttachmentCount: u32
§pColorAttachmentFormats: *const VkFormat
§depthAttachmentFormat: VkFormat
§stencilAttachmentFormat: VkFormat
§rasterizationSamples: VkSampleCountFlagBits
Trait Implementations§
Source§impl Clone for VkCommandBufferInheritanceRenderingInfo
impl Clone for VkCommandBufferInheritanceRenderingInfo
Source§fn clone(&self) -> VkCommandBufferInheritanceRenderingInfo
fn clone(&self) -> VkCommandBufferInheritanceRenderingInfo
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 moreimpl Copy for VkCommandBufferInheritanceRenderingInfo
Auto Trait Implementations§
impl Freeze for VkCommandBufferInheritanceRenderingInfo
impl RefUnwindSafe for VkCommandBufferInheritanceRenderingInfo
impl !Send for VkCommandBufferInheritanceRenderingInfo
impl !Sync for VkCommandBufferInheritanceRenderingInfo
impl Unpin for VkCommandBufferInheritanceRenderingInfo
impl UnwindSafe for VkCommandBufferInheritanceRenderingInfo
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