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