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