#[repr(C)]pub struct PhysicalDeviceMemoryBudgetPropertiesEXT {
pub s_type: StructureType,
pub p_next: *mut c_void,
pub heap_budget: [u64; 16],
pub heap_usage: [u64; 16],
}Expand description
VkPhysicalDeviceMemoryBudgetPropertiesEXT
Provided by VK_EXT_memory_budget.
Returned only*, filled by Vulkan, not constructed by the application.
§Extends
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_MEMORY_BUDGET_PROPERTIES_EXT.
p_next: *mut c_voidOptional, may be null.
heap_budget: [u64; 16]§heap_usage: [u64; 16]Implementations§
Source§impl PhysicalDeviceMemoryBudgetPropertiesEXT
impl PhysicalDeviceMemoryBudgetPropertiesEXT
Sourcepub fn builder<'a>() -> PhysicalDeviceMemoryBudgetPropertiesEXTBuilder<'a>
pub fn builder<'a>() -> PhysicalDeviceMemoryBudgetPropertiesEXTBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for PhysicalDeviceMemoryBudgetPropertiesEXT
impl Clone for PhysicalDeviceMemoryBudgetPropertiesEXT
Source§fn clone(&self) -> PhysicalDeviceMemoryBudgetPropertiesEXT
fn clone(&self) -> PhysicalDeviceMemoryBudgetPropertiesEXT
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 moreimpl Copy for PhysicalDeviceMemoryBudgetPropertiesEXT
impl ExtendsPhysicalDeviceMemoryProperties2 for PhysicalDeviceMemoryBudgetPropertiesEXT
Auto Trait Implementations§
impl Freeze for PhysicalDeviceMemoryBudgetPropertiesEXT
impl RefUnwindSafe for PhysicalDeviceMemoryBudgetPropertiesEXT
impl !Send for PhysicalDeviceMemoryBudgetPropertiesEXT
impl !Sync for PhysicalDeviceMemoryBudgetPropertiesEXT
impl Unpin for PhysicalDeviceMemoryBudgetPropertiesEXT
impl UnsafeUnpin for PhysicalDeviceMemoryBudgetPropertiesEXT
impl UnwindSafe for PhysicalDeviceMemoryBudgetPropertiesEXT
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