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