#[repr(C)]pub struct PhysicalDeviceVulkanMemoryModelFeatures {
pub sType: StructureType,
pub pNext: *mut c_void,
pub vulkanMemoryModel: Bool32,
pub vulkanMemoryModelDeviceScope: Bool32,
pub vulkanMemoryModelAvailabilityVisibilityChains: Bool32,
}Fields§
§sType: StructureType§pNext: *mut c_void§vulkanMemoryModel: Bool32§vulkanMemoryModelDeviceScope: Bool32§vulkanMemoryModelAvailabilityVisibilityChains: Bool32Implementations§
Source§impl PhysicalDeviceVulkanMemoryModelFeatures
impl PhysicalDeviceVulkanMemoryModelFeatures
pub fn new() -> Self
pub fn sType(self, sType: StructureType) -> Self
pub fn pNext(self, pNext: *mut c_void) -> Self
pub fn vulkanMemoryModel(self, vulkanMemoryModel: Bool32) -> Self
pub fn vulkanMemoryModelDeviceScope( self, vulkanMemoryModelDeviceScope: Bool32, ) -> Self
pub fn vulkanMemoryModelAvailabilityVisibilityChains( self, vulkanMemoryModelAvailabilityVisibilityChains: Bool32, ) -> Self
Trait Implementations§
Source§impl Clone for PhysicalDeviceVulkanMemoryModelFeatures
impl Clone for PhysicalDeviceVulkanMemoryModelFeatures
Source§fn clone(&self) -> PhysicalDeviceVulkanMemoryModelFeatures
fn clone(&self) -> PhysicalDeviceVulkanMemoryModelFeatures
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 PhysicalDeviceVulkanMemoryModelFeatures
impl Default for PhysicalDeviceVulkanMemoryModelFeatures
Source§fn default() -> PhysicalDeviceVulkanMemoryModelFeatures
fn default() -> PhysicalDeviceVulkanMemoryModelFeatures
Returns the “default value” for a type. Read more
impl Copy for PhysicalDeviceVulkanMemoryModelFeatures
Auto Trait Implementations§
impl Freeze for PhysicalDeviceVulkanMemoryModelFeatures
impl RefUnwindSafe for PhysicalDeviceVulkanMemoryModelFeatures
impl !Send for PhysicalDeviceVulkanMemoryModelFeatures
impl !Sync for PhysicalDeviceVulkanMemoryModelFeatures
impl Unpin for PhysicalDeviceVulkanMemoryModelFeatures
impl UnwindSafe for PhysicalDeviceVulkanMemoryModelFeatures
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