#[repr(C)]pub struct PhysicalDevice8BitStorageFeatures {
pub sType: StructureType,
pub pNext: *mut c_void,
pub storageBuffer8BitAccess: Bool32,
pub uniformAndStorageBuffer8BitAccess: Bool32,
pub storagePushConstant8: Bool32,
}Fields§
§sType: StructureType§pNext: *mut c_void§storageBuffer8BitAccess: Bool32§uniformAndStorageBuffer8BitAccess: Bool32§storagePushConstant8: Bool32Implementations§
Source§impl PhysicalDevice8BitStorageFeatures
impl PhysicalDevice8BitStorageFeatures
pub fn new() -> Self
pub fn sType(self, sType: StructureType) -> Self
pub fn pNext(self, pNext: *mut c_void) -> Self
pub fn storageBuffer8BitAccess(self, storageBuffer8BitAccess: Bool32) -> Self
pub fn uniformAndStorageBuffer8BitAccess( self, uniformAndStorageBuffer8BitAccess: Bool32, ) -> Self
pub fn storagePushConstant8(self, storagePushConstant8: Bool32) -> Self
Trait Implementations§
Source§impl Clone for PhysicalDevice8BitStorageFeatures
impl Clone for PhysicalDevice8BitStorageFeatures
Source§fn clone(&self) -> PhysicalDevice8BitStorageFeatures
fn clone(&self) -> PhysicalDevice8BitStorageFeatures
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for PhysicalDevice8BitStorageFeatures
impl Default for PhysicalDevice8BitStorageFeatures
Source§fn default() -> PhysicalDevice8BitStorageFeatures
fn default() -> PhysicalDevice8BitStorageFeatures
Returns the “default value” for a type. Read more
impl Copy for PhysicalDevice8BitStorageFeatures
Auto Trait Implementations§
impl Freeze for PhysicalDevice8BitStorageFeatures
impl RefUnwindSafe for PhysicalDevice8BitStorageFeatures
impl !Send for PhysicalDevice8BitStorageFeatures
impl !Sync for PhysicalDevice8BitStorageFeatures
impl Unpin for PhysicalDevice8BitStorageFeatures
impl UnwindSafe for PhysicalDevice8BitStorageFeatures
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