Struct ash::vk::FramebufferAttachmentsCreateInfoBuilder
source · pub struct FramebufferAttachmentsCreateInfoBuilder<'a> { /* private fields */ }
Implementations§
source§impl<'a> FramebufferAttachmentsCreateInfoBuilder<'a>
impl<'a> FramebufferAttachmentsCreateInfoBuilder<'a>
pub fn attachment_image_infos( self, attachment_image_infos: &'a [FramebufferAttachmentImageInfo] ) -> Self
sourcepub fn build(self) -> FramebufferAttachmentsCreateInfo
pub fn build(self) -> FramebufferAttachmentsCreateInfo
Calling build will discard all the lifetime information. Only call this if
necessary! Builders implement Deref
targeting their corresponding Vulkan struct,
so references to builders can be passed directly to Vulkan functions.
Trait Implementations§
source§impl<'a> Deref for FramebufferAttachmentsCreateInfoBuilder<'a>
impl<'a> Deref for FramebufferAttachmentsCreateInfoBuilder<'a>
source§impl<'a> DerefMut for FramebufferAttachmentsCreateInfoBuilder<'a>
impl<'a> DerefMut for FramebufferAttachmentsCreateInfoBuilder<'a>
impl ExtendsFramebufferCreateInfo for FramebufferAttachmentsCreateInfoBuilder<'_>
Auto Trait Implementations§
impl<'a> Freeze for FramebufferAttachmentsCreateInfoBuilder<'a>
impl<'a> RefUnwindSafe for FramebufferAttachmentsCreateInfoBuilder<'a>
impl<'a> !Send for FramebufferAttachmentsCreateInfoBuilder<'a>
impl<'a> !Sync for FramebufferAttachmentsCreateInfoBuilder<'a>
impl<'a> Unpin for FramebufferAttachmentsCreateInfoBuilder<'a>
impl<'a> UnwindSafe for FramebufferAttachmentsCreateInfoBuilder<'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