#[repr(transparent)]pub struct VideoGetMemoryPropertiesKHRBuilder<'a> { /* private fields */ }Implementations
sourceimpl<'a> VideoGetMemoryPropertiesKHRBuilder<'a>
impl<'a> VideoGetMemoryPropertiesKHRBuilder<'a>
pub fn memory_bind_index(
self,
memory_bind_index: u32
) -> VideoGetMemoryPropertiesKHRBuilder<'a>
pub fn memory_requirements(
self,
memory_requirements: &'a mut MemoryRequirements2
) -> VideoGetMemoryPropertiesKHRBuilder<'a>
sourcepub fn build(self) -> VideoGetMemoryPropertiesKHR
pub fn build(self) -> VideoGetMemoryPropertiesKHR
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 VideoGetMemoryPropertiesKHRBuilder<'a>
impl<'a> Deref for VideoGetMemoryPropertiesKHRBuilder<'a>
type Target = VideoGetMemoryPropertiesKHR
type Target = VideoGetMemoryPropertiesKHR
The resulting type after dereferencing.
sourcefn deref(&self) -> &<VideoGetMemoryPropertiesKHRBuilder<'a> as Deref>::Target
fn deref(&self) -> &<VideoGetMemoryPropertiesKHRBuilder<'a> as Deref>::Target
Dereferences the value.
sourceimpl<'a> DerefMut for VideoGetMemoryPropertiesKHRBuilder<'a>
impl<'a> DerefMut for VideoGetMemoryPropertiesKHRBuilder<'a>
sourcefn deref_mut(
&mut self
) -> &mut <VideoGetMemoryPropertiesKHRBuilder<'a> as Deref>::Target
fn deref_mut(
&mut self
) -> &mut <VideoGetMemoryPropertiesKHRBuilder<'a> as Deref>::Target
Mutably dereferences the value.
Auto Trait Implementations
impl<'a> RefUnwindSafe for VideoGetMemoryPropertiesKHRBuilder<'a>
impl<'a> !Send for VideoGetMemoryPropertiesKHRBuilder<'a>
impl<'a> !Sync for VideoGetMemoryPropertiesKHRBuilder<'a>
impl<'a> Unpin for VideoGetMemoryPropertiesKHRBuilder<'a>
impl<'a> UnwindSafe for VideoGetMemoryPropertiesKHRBuilder<'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