#[repr(C)]pub struct VkPhysicalDeviceMemoryProperties {
pub memoryTypeCount: u32,
pub memoryTypes: [VkMemoryType; 32],
pub memoryHeapCount: u32,
pub memoryHeaps: [VkMemoryHeap; 16],
}Fields§
§memoryTypeCount: u32§memoryTypes: [VkMemoryType; 32]§memoryHeapCount: u32§memoryHeaps: [VkMemoryHeap; 16]Implementations§
Source§impl VkPhysicalDeviceMemoryProperties
impl VkPhysicalDeviceMemoryProperties
pub fn types(&self) -> &[MemoryType] ⓘ
pub fn heaps(&self) -> &[MemoryHeap] ⓘ
Trait Implementations§
Source§impl Clone for VkPhysicalDeviceMemoryProperties
impl Clone for VkPhysicalDeviceMemoryProperties
Source§fn clone(&self) -> VkPhysicalDeviceMemoryProperties
fn clone(&self) -> VkPhysicalDeviceMemoryProperties
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 moreAuto Trait Implementations§
impl Freeze for VkPhysicalDeviceMemoryProperties
impl RefUnwindSafe for VkPhysicalDeviceMemoryProperties
impl Send for VkPhysicalDeviceMemoryProperties
impl Sync for VkPhysicalDeviceMemoryProperties
impl Unpin for VkPhysicalDeviceMemoryProperties
impl UnwindSafe for VkPhysicalDeviceMemoryProperties
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