#[repr(C)]pub struct PipelineRenderingCreateInfo {
pub s_type: StructureType,
pub next: *const c_void,
pub view_mask: u32,
pub color_attachment_count: u32,
pub color_attachment_formats: *const Format,
pub depth_attachment_format: Format,
pub stencil_attachment_format: Format,
}Expand description
Fields§
§s_type: StructureType§next: *const c_void§view_mask: u32§color_attachment_count: u32§color_attachment_formats: *const Format§depth_attachment_format: Format§stencil_attachment_format: FormatTrait Implementations§
Source§impl Clone for PipelineRenderingCreateInfo
impl Clone for PipelineRenderingCreateInfo
Source§fn clone(&self) -> PipelineRenderingCreateInfo
fn clone(&self) -> PipelineRenderingCreateInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PipelineRenderingCreateInfo
Source§impl Debug for PipelineRenderingCreateInfo
impl Debug for PipelineRenderingCreateInfo
impl Eq for PipelineRenderingCreateInfo
Source§impl Hash for PipelineRenderingCreateInfo
impl Hash for PipelineRenderingCreateInfo
Source§impl PartialEq for PipelineRenderingCreateInfo
impl PartialEq for PipelineRenderingCreateInfo
Source§fn eq(&self, other: &PipelineRenderingCreateInfo) -> bool
fn eq(&self, other: &PipelineRenderingCreateInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Send for PipelineRenderingCreateInfo
impl StructuralPartialEq for PipelineRenderingCreateInfo
impl Sync for PipelineRenderingCreateInfo
Auto Trait Implementations§
impl Freeze for PipelineRenderingCreateInfo
impl RefUnwindSafe for PipelineRenderingCreateInfo
impl Unpin for PipelineRenderingCreateInfo
impl UnsafeUnpin for PipelineRenderingCreateInfo
impl UnwindSafe for PipelineRenderingCreateInfo
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