#[repr(transparent)]pub struct InputAttachmentAspectReferenceBuilder<'a> { /* private fields */ }Implementations
sourceimpl<'a> InputAttachmentAspectReferenceBuilder<'a>
impl<'a> InputAttachmentAspectReferenceBuilder<'a>
pub fn subpass(self, subpass: u32) -> InputAttachmentAspectReferenceBuilder<'a>
pub fn input_attachment_index(
self,
input_attachment_index: u32
) -> InputAttachmentAspectReferenceBuilder<'a>
pub fn aspect_mask(
self,
aspect_mask: ImageAspectFlags
) -> InputAttachmentAspectReferenceBuilder<'a>
sourcepub fn build(self) -> InputAttachmentAspectReference
pub fn build(self) -> InputAttachmentAspectReference
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
sourceimpl<'a> Deref for InputAttachmentAspectReferenceBuilder<'a>
impl<'a> Deref for InputAttachmentAspectReferenceBuilder<'a>
type Target = InputAttachmentAspectReference
type Target = InputAttachmentAspectReference
The resulting type after dereferencing.
sourcefn deref(&self) -> &<InputAttachmentAspectReferenceBuilder<'a> as Deref>::Target
fn deref(&self) -> &<InputAttachmentAspectReferenceBuilder<'a> as Deref>::Target
Dereferences the value.
sourceimpl<'a> DerefMut for InputAttachmentAspectReferenceBuilder<'a>
impl<'a> DerefMut for InputAttachmentAspectReferenceBuilder<'a>
sourcefn deref_mut(
&mut self
) -> &mut <InputAttachmentAspectReferenceBuilder<'a> as Deref>::Target
fn deref_mut(
&mut self
) -> &mut <InputAttachmentAspectReferenceBuilder<'a> as Deref>::Target
Mutably dereferences the value.
Auto Trait Implementations
impl<'a> RefUnwindSafe for InputAttachmentAspectReferenceBuilder<'a>
impl<'a> Send for InputAttachmentAspectReferenceBuilder<'a>
impl<'a> Sync for InputAttachmentAspectReferenceBuilder<'a>
impl<'a> Unpin for InputAttachmentAspectReferenceBuilder<'a>
impl<'a> UnwindSafe for InputAttachmentAspectReferenceBuilder<'a>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more