#[repr(C)]pub struct PhysicalDeviceMemoryProperties {
pub memory_type_count: u32,
pub memory_types: [MemoryType; 32],
pub memory_heap_count: u32,
pub memory_heaps: [MemoryHeap; 16],
}Expand description
VkPhysicalDeviceMemoryProperties
Provided by VK_BASE_VERSION_1_0.
Returned only*, filled by Vulkan, not constructed by the application.
Fields§
§memory_type_count: u32§memory_types: [MemoryType; 32]§memory_heap_count: u32§memory_heaps: [MemoryHeap; 16]Implementations§
Source§impl PhysicalDeviceMemoryProperties
impl PhysicalDeviceMemoryProperties
Sourcepub fn builder() -> PhysicalDeviceMemoryPropertiesBuilder
pub fn builder() -> PhysicalDeviceMemoryPropertiesBuilder
Start building this struct.
Trait Implementations§
Source§impl Clone for PhysicalDeviceMemoryProperties
impl Clone for PhysicalDeviceMemoryProperties
Source§fn clone(&self) -> PhysicalDeviceMemoryProperties
fn clone(&self) -> PhysicalDeviceMemoryProperties
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 PhysicalDeviceMemoryProperties
impl Default for PhysicalDeviceMemoryProperties
Source§fn default() -> PhysicalDeviceMemoryProperties
fn default() -> PhysicalDeviceMemoryProperties
Returns the “default value” for a type. Read more
impl Copy for PhysicalDeviceMemoryProperties
Auto Trait Implementations§
impl Freeze for PhysicalDeviceMemoryProperties
impl RefUnwindSafe for PhysicalDeviceMemoryProperties
impl Send for PhysicalDeviceMemoryProperties
impl Sync for PhysicalDeviceMemoryProperties
impl Unpin for PhysicalDeviceMemoryProperties
impl UnsafeUnpin for PhysicalDeviceMemoryProperties
impl UnwindSafe for PhysicalDeviceMemoryProperties
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