Struct ash::vk::RenderingInfo
source · [−]#[repr(C)]pub struct RenderingInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub flags: RenderingFlags,
pub render_area: Rect2D,
pub layer_count: u32,
pub view_mask: u32,
pub color_attachment_count: u32,
pub p_color_attachments: *const RenderingAttachmentInfo,
pub p_depth_attachment: *const RenderingAttachmentInfo,
pub p_stencil_attachment: *const RenderingAttachmentInfo,
}Expand description
Fields
s_type: StructureTypep_next: *const c_voidflags: RenderingFlagsrender_area: Rect2Dlayer_count: u32view_mask: u32color_attachment_count: u32p_color_attachments: *const RenderingAttachmentInfop_depth_attachment: *const RenderingAttachmentInfop_stencil_attachment: *const RenderingAttachmentInfoImplementations
sourceimpl RenderingInfo
impl RenderingInfo
pub fn builder<'a>() -> RenderingInfoBuilder<'a>
Trait Implementations
sourceimpl Clone for RenderingInfo
impl Clone for RenderingInfo
sourcefn clone(&self) -> RenderingInfo
fn clone(&self) -> RenderingInfo
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 RenderingInfo
impl Debug for RenderingInfo
sourceimpl Default for RenderingInfo
impl Default for RenderingInfo
impl Copy for RenderingInfo
Auto Trait Implementations
impl RefUnwindSafe for RenderingInfo
impl !Send for RenderingInfo
impl !Sync for RenderingInfo
impl Unpin for RenderingInfo
impl UnwindSafe for RenderingInfo
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
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more