#[repr(transparent)]pub struct PhysicalDeviceVulkan11FeaturesBuilder<'a> { /* private fields */ }Implementations
sourceimpl<'a> PhysicalDeviceVulkan11FeaturesBuilder<'a>
impl<'a> PhysicalDeviceVulkan11FeaturesBuilder<'a>
pub fn storage_buffer16_bit_access(
self,
storage_buffer16_bit_access: bool
) -> PhysicalDeviceVulkan11FeaturesBuilder<'a>
pub fn uniform_and_storage_buffer16_bit_access(
self,
uniform_and_storage_buffer16_bit_access: bool
) -> PhysicalDeviceVulkan11FeaturesBuilder<'a>
pub fn storage_push_constant16(
self,
storage_push_constant16: bool
) -> PhysicalDeviceVulkan11FeaturesBuilder<'a>
pub fn storage_input_output16(
self,
storage_input_output16: bool
) -> PhysicalDeviceVulkan11FeaturesBuilder<'a>
pub fn multiview(
self,
multiview: bool
) -> PhysicalDeviceVulkan11FeaturesBuilder<'a>
pub fn multiview_geometry_shader(
self,
multiview_geometry_shader: bool
) -> PhysicalDeviceVulkan11FeaturesBuilder<'a>
pub fn multiview_tessellation_shader(
self,
multiview_tessellation_shader: bool
) -> PhysicalDeviceVulkan11FeaturesBuilder<'a>
pub fn variable_pointers_storage_buffer(
self,
variable_pointers_storage_buffer: bool
) -> PhysicalDeviceVulkan11FeaturesBuilder<'a>
pub fn variable_pointers(
self,
variable_pointers: bool
) -> PhysicalDeviceVulkan11FeaturesBuilder<'a>
pub fn protected_memory(
self,
protected_memory: bool
) -> PhysicalDeviceVulkan11FeaturesBuilder<'a>
pub fn sampler_ycbcr_conversion(
self,
sampler_ycbcr_conversion: bool
) -> PhysicalDeviceVulkan11FeaturesBuilder<'a>
pub fn shader_draw_parameters(
self,
shader_draw_parameters: bool
) -> PhysicalDeviceVulkan11FeaturesBuilder<'a>
sourcepub fn build(self) -> PhysicalDeviceVulkan11Features
pub fn build(self) -> PhysicalDeviceVulkan11Features
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 PhysicalDeviceVulkan11FeaturesBuilder<'a>
impl<'a> Deref for PhysicalDeviceVulkan11FeaturesBuilder<'a>
type Target = PhysicalDeviceVulkan11Features
type Target = PhysicalDeviceVulkan11Features
The resulting type after dereferencing.
sourcefn deref(&self) -> &<PhysicalDeviceVulkan11FeaturesBuilder<'a> as Deref>::Target
fn deref(&self) -> &<PhysicalDeviceVulkan11FeaturesBuilder<'a> as Deref>::Target
Dereferences the value.
sourceimpl<'a> DerefMut for PhysicalDeviceVulkan11FeaturesBuilder<'a>
impl<'a> DerefMut for PhysicalDeviceVulkan11FeaturesBuilder<'a>
sourcefn deref_mut(
&mut self
) -> &mut <PhysicalDeviceVulkan11FeaturesBuilder<'a> as Deref>::Target
fn deref_mut(
&mut self
) -> &mut <PhysicalDeviceVulkan11FeaturesBuilder<'a> as Deref>::Target
Mutably dereferences the value.
impl<'_> ExtendsDeviceCreateInfo for PhysicalDeviceVulkan11FeaturesBuilder<'_>
impl<'_> ExtendsPhysicalDeviceFeatures2 for PhysicalDeviceVulkan11FeaturesBuilder<'_>
Auto Trait Implementations
impl<'a> RefUnwindSafe for PhysicalDeviceVulkan11FeaturesBuilder<'a>
impl<'a> !Send for PhysicalDeviceVulkan11FeaturesBuilder<'a>
impl<'a> !Sync for PhysicalDeviceVulkan11FeaturesBuilder<'a>
impl<'a> Unpin for PhysicalDeviceVulkan11FeaturesBuilder<'a>
impl<'a> UnwindSafe for PhysicalDeviceVulkan11FeaturesBuilder<'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