Struct ash::vk::PhysicalDeviceMemoryProperties
source · #[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
Fields§
§memory_type_count: u32
§memory_types: [MemoryType; 32]
§memory_heap_count: u32
§memory_heaps: [MemoryHeap; 16]
Implementations§
source§impl PhysicalDeviceMemoryProperties
impl PhysicalDeviceMemoryProperties
pub fn builder<'a>() -> PhysicalDeviceMemoryPropertiesBuilder<'a>
Trait Implementations§
source§impl Clone for PhysicalDeviceMemoryProperties
impl Clone for PhysicalDeviceMemoryProperties
source§fn clone(&self) -> PhysicalDeviceMemoryProperties
fn clone(&self) -> PhysicalDeviceMemoryProperties
Returns a copy 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 moreimpl 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 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