#[repr(C)]pub struct CommandBufferInheritanceRenderingInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub flags: RenderingFlags,
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,
pub rasterization_samples: SampleCountFlags,
}Expand description
Fields
s_type: StructureTypep_next: *const c_voidflags: RenderingFlagsview_mask: u32color_attachment_count: u32p_color_attachment_formats: *const Formatdepth_attachment_format: Formatstencil_attachment_format: Formatrasterization_samples: SampleCountFlagsImplementations
sourceimpl CommandBufferInheritanceRenderingInfo
impl CommandBufferInheritanceRenderingInfo
pub fn builder<'a>() -> CommandBufferInheritanceRenderingInfoBuilder<'a>
Trait Implementations
sourceimpl Clone for CommandBufferInheritanceRenderingInfo
impl Clone for CommandBufferInheritanceRenderingInfo
sourcefn clone(&self) -> CommandBufferInheritanceRenderingInfo
fn clone(&self) -> CommandBufferInheritanceRenderingInfo
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 Default for CommandBufferInheritanceRenderingInfo
impl Default for CommandBufferInheritanceRenderingInfo
sourcefn default() -> CommandBufferInheritanceRenderingInfo
fn default() -> CommandBufferInheritanceRenderingInfo
Returns the “default value” for a type. Read more
impl Copy for CommandBufferInheritanceRenderingInfo
impl ExtendsCommandBufferInheritanceInfo for CommandBufferInheritanceRenderingInfo
Auto Trait Implementations
impl RefUnwindSafe for CommandBufferInheritanceRenderingInfo
impl !Send for CommandBufferInheritanceRenderingInfo
impl !Sync for CommandBufferInheritanceRenderingInfo
impl Unpin for CommandBufferInheritanceRenderingInfo
impl UnwindSafe for CommandBufferInheritanceRenderingInfo
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