#[repr(C)]pub struct RenderPassAttachmentBeginInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub attachment_count: u32,
pub p_attachments: *const ImageView,
}Expand description
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_RENDER_PASS_ATTACHMENT_BEGIN_INFO.
p_next: *const c_voidOptional, may be null.
attachment_count: u32Length of p_attachments.
p_attachments: *const ImageViewImplementations§
Source§impl RenderPassAttachmentBeginInfo
impl RenderPassAttachmentBeginInfo
Sourcepub fn builder<'a>() -> RenderPassAttachmentBeginInfoBuilder<'a>
pub fn builder<'a>() -> RenderPassAttachmentBeginInfoBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for RenderPassAttachmentBeginInfo
impl Clone for RenderPassAttachmentBeginInfo
Source§fn clone(&self) -> RenderPassAttachmentBeginInfo
fn clone(&self) -> RenderPassAttachmentBeginInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for RenderPassAttachmentBeginInfo
impl Default for RenderPassAttachmentBeginInfo
Source§fn default() -> RenderPassAttachmentBeginInfo
fn default() -> RenderPassAttachmentBeginInfo
Returns the “default value” for a type. Read more
impl Copy for RenderPassAttachmentBeginInfo
impl ExtendsRenderPassBeginInfo for RenderPassAttachmentBeginInfo
Auto Trait Implementations§
impl Freeze for RenderPassAttachmentBeginInfo
impl RefUnwindSafe for RenderPassAttachmentBeginInfo
impl !Send for RenderPassAttachmentBeginInfo
impl !Sync for RenderPassAttachmentBeginInfo
impl Unpin for RenderPassAttachmentBeginInfo
impl UnsafeUnpin for RenderPassAttachmentBeginInfo
impl UnwindSafe for RenderPassAttachmentBeginInfo
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