#[repr(C)]pub struct FramebufferAttachmentsCreateInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub attachment_image_info_count: u32,
pub p_attachment_image_infos: *const FramebufferAttachmentImageInfo,
}Expand description
VkFramebufferAttachmentsCreateInfo
Provided by VK_GRAPHICS_VERSION_1_2.
§Extends
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_FRAMEBUFFER_ATTACHMENTS_CREATE_INFO.
p_next: *const c_voidOptional, may be null.
attachment_image_info_count: u32Length of p_attachment_image_infos.
p_attachment_image_infos: *const FramebufferAttachmentImageInfoImplementations§
Source§impl FramebufferAttachmentsCreateInfo
impl FramebufferAttachmentsCreateInfo
Sourcepub fn builder<'a>() -> FramebufferAttachmentsCreateInfoBuilder<'a>
pub fn builder<'a>() -> FramebufferAttachmentsCreateInfoBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for FramebufferAttachmentsCreateInfo
impl Clone for FramebufferAttachmentsCreateInfo
Source§fn clone(&self) -> FramebufferAttachmentsCreateInfo
fn clone(&self) -> FramebufferAttachmentsCreateInfo
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 FramebufferAttachmentsCreateInfo
impl Default for FramebufferAttachmentsCreateInfo
Source§fn default() -> FramebufferAttachmentsCreateInfo
fn default() -> FramebufferAttachmentsCreateInfo
Returns the “default value” for a type. Read more
impl Copy for FramebufferAttachmentsCreateInfo
impl ExtendsFramebufferCreateInfo for FramebufferAttachmentsCreateInfo
Auto Trait Implementations§
impl Freeze for FramebufferAttachmentsCreateInfo
impl RefUnwindSafe for FramebufferAttachmentsCreateInfo
impl !Send for FramebufferAttachmentsCreateInfo
impl !Sync for FramebufferAttachmentsCreateInfo
impl Unpin for FramebufferAttachmentsCreateInfo
impl UnsafeUnpin for FramebufferAttachmentsCreateInfo
impl UnwindSafe for FramebufferAttachmentsCreateInfo
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