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