#[repr(C)]pub struct PipelineRenderingCreateInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub view_mask: u32,
pub color_attachment_count: u32,
pub p_color_attachment_formats: *const Format,
pub depth_attachment_format: Format,
pub stencil_attachment_format: Format,
}Expand description
Fields
s_type: StructureTypep_next: *const c_voidview_mask: u32color_attachment_count: u32p_color_attachment_formats: *const Formatdepth_attachment_format: Formatstencil_attachment_format: FormatImplementations
sourceimpl PipelineRenderingCreateInfo
impl PipelineRenderingCreateInfo
pub fn builder<'a>() -> PipelineRenderingCreateInfoBuilder<'a>
Trait Implementations
sourceimpl Clone for PipelineRenderingCreateInfo
impl Clone for PipelineRenderingCreateInfo
sourcefn clone(&self) -> PipelineRenderingCreateInfo
fn clone(&self) -> PipelineRenderingCreateInfo
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for PipelineRenderingCreateInfo
impl Debug for PipelineRenderingCreateInfo
sourceimpl Default for PipelineRenderingCreateInfo
impl Default for PipelineRenderingCreateInfo
sourcefn default() -> PipelineRenderingCreateInfo
fn default() -> PipelineRenderingCreateInfo
Returns the “default value” for a type. Read more
impl Copy for PipelineRenderingCreateInfo
impl ExtendsGraphicsPipelineCreateInfo for PipelineRenderingCreateInfo
Auto Trait Implementations
impl RefUnwindSafe for PipelineRenderingCreateInfo
impl !Send for PipelineRenderingCreateInfo
impl !Sync for PipelineRenderingCreateInfo
impl Unpin for PipelineRenderingCreateInfo
impl UnwindSafe for PipelineRenderingCreateInfo
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more