pub struct PhysicalDevice8BitStorageFeaturesBuilder<'a> { /* private fields */ }Expand description
Builder for PhysicalDevice8BitStorageFeatures with lifetime-tied pNext safety.
Implementations§
Source§impl<'a> PhysicalDevice8BitStorageFeaturesBuilder<'a>
impl<'a> PhysicalDevice8BitStorageFeaturesBuilder<'a>
pub fn storage_buffer8_bit_access( self, value: bool, ) -> PhysicalDevice8BitStorageFeaturesBuilder<'a>
pub fn uniform_and_storage_buffer8_bit_access( self, value: bool, ) -> PhysicalDevice8BitStorageFeaturesBuilder<'a>
pub fn storage_push_constant8( self, value: bool, ) -> PhysicalDevice8BitStorageFeaturesBuilder<'a>
Sourcepub fn push_next<T>(
self,
next: &'a mut T,
) -> PhysicalDevice8BitStorageFeaturesBuilder<'a>where
T: ExtendsPhysicalDevice8BitStorageFeatures,
pub fn push_next<T>(
self,
next: &'a mut T,
) -> PhysicalDevice8BitStorageFeaturesBuilder<'a>where
T: ExtendsPhysicalDevice8BitStorageFeatures,
Prepend a struct to the pNext chain. See PhysicalDevice8BitStorageFeatures’s Extended By section for valid types.
Trait Implementations§
Source§impl<'a> Deref for PhysicalDevice8BitStorageFeaturesBuilder<'a>
impl<'a> Deref for PhysicalDevice8BitStorageFeaturesBuilder<'a>
Source§type Target = PhysicalDevice8BitStorageFeatures
type Target = PhysicalDevice8BitStorageFeatures
The resulting type after dereferencing.
Source§impl<'a> DerefMut for PhysicalDevice8BitStorageFeaturesBuilder<'a>
impl<'a> DerefMut for PhysicalDevice8BitStorageFeaturesBuilder<'a>
Auto Trait Implementations§
impl<'a> Freeze for PhysicalDevice8BitStorageFeaturesBuilder<'a>
impl<'a> RefUnwindSafe for PhysicalDevice8BitStorageFeaturesBuilder<'a>
impl<'a> !Send for PhysicalDevice8BitStorageFeaturesBuilder<'a>
impl<'a> !Sync for PhysicalDevice8BitStorageFeaturesBuilder<'a>
impl<'a> Unpin for PhysicalDevice8BitStorageFeaturesBuilder<'a>
impl<'a> UnsafeUnpin for PhysicalDevice8BitStorageFeaturesBuilder<'a>
impl<'a> UnwindSafe for PhysicalDevice8BitStorageFeaturesBuilder<'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