pub type RenderPassAttachmentBeginInfoKHR<'a> = RenderPassAttachmentBeginInfo<'a>;
Aliased Type§
struct RenderPassAttachmentBeginInfoKHR<'a> {
pub s_type: StructureType,
pub p_next: *const c_void,
pub attachment_count: u32,
pub p_attachments: *const ImageView,
pub _marker: PhantomData<&'a ()>,
}
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 more