Struct ash::vk::RenderPassAttachmentBeginInfo
source · #[repr(C)]pub struct RenderPassAttachmentBeginInfo<'a> {
pub s_type: StructureType,
pub p_next: *const c_void,
pub attachment_count: u32,
pub p_attachments: *const ImageView,
pub _marker: PhantomData<&'a ()>,
}
Expand description
Fields§
§s_type: StructureType
§p_next: *const c_void
§attachment_count: u32
§p_attachments: *const ImageView
§_marker: PhantomData<&'a ()>
Implementations§
source§impl<'a> RenderPassAttachmentBeginInfo<'a>
impl<'a> RenderPassAttachmentBeginInfo<'a>
pub fn attachments(self, attachments: &'a [ImageView]) -> Self
Trait Implementations§
source§impl<'a> Clone for RenderPassAttachmentBeginInfo<'a>
impl<'a> Clone for RenderPassAttachmentBeginInfo<'a>
source§fn clone(&self) -> RenderPassAttachmentBeginInfo<'a>
fn clone(&self) -> RenderPassAttachmentBeginInfo<'a>
Returns a copy 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<'a> Debug for RenderPassAttachmentBeginInfo<'a>
impl<'a> Debug for RenderPassAttachmentBeginInfo<'a>
source§impl Default for RenderPassAttachmentBeginInfo<'_>
impl Default for RenderPassAttachmentBeginInfo<'_>
source§impl<'a> TaggedStructure for RenderPassAttachmentBeginInfo<'a>
impl<'a> TaggedStructure for RenderPassAttachmentBeginInfo<'a>
const STRUCTURE_TYPE: StructureType = StructureType::RENDER_PASS_ATTACHMENT_BEGIN_INFO
impl<'a> Copy for RenderPassAttachmentBeginInfo<'a>
impl ExtendsRenderPassBeginInfo for RenderPassAttachmentBeginInfo<'_>
impl Send for RenderPassAttachmentBeginInfo<'_>
impl Sync for RenderPassAttachmentBeginInfo<'_>
Auto Trait Implementations§
impl<'a> Freeze for RenderPassAttachmentBeginInfo<'a>
impl<'a> RefUnwindSafe for RenderPassAttachmentBeginInfo<'a>
impl<'a> Unpin for RenderPassAttachmentBeginInfo<'a>
impl<'a> UnwindSafe for RenderPassAttachmentBeginInfo<'a>
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