#[repr(C)]pub struct CommandPoolMemoryConsumption {
pub s_type: StructureType,
pub p_next: *mut c_void,
pub command_pool_allocated: u64,
pub command_pool_reserved_size: u64,
pub command_buffer_allocated: u64,
}Expand description
VkCommandPoolMemoryConsumption
Provided by VKSC_VERSION_1_0.
Returned only*, filled by Vulkan, not constructed by the application.
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_COMMAND_POOL_MEMORY_CONSUMPTION.
p_next: *mut c_voidOptional, may be null.
command_pool_allocated: u64§command_pool_reserved_size: u64§command_buffer_allocated: u64Implementations§
Source§impl CommandPoolMemoryConsumption
impl CommandPoolMemoryConsumption
Sourcepub fn builder<'a>() -> CommandPoolMemoryConsumptionBuilder<'a>
pub fn builder<'a>() -> CommandPoolMemoryConsumptionBuilder<'a>
Returns a builder for this struct with sType pre-filled.
Trait Implementations§
Source§impl Clone for CommandPoolMemoryConsumption
impl Clone for CommandPoolMemoryConsumption
Source§fn clone(&self) -> CommandPoolMemoryConsumption
fn clone(&self) -> CommandPoolMemoryConsumption
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 Debug for CommandPoolMemoryConsumption
impl Debug for CommandPoolMemoryConsumption
impl Copy for CommandPoolMemoryConsumption
Auto Trait Implementations§
impl Freeze for CommandPoolMemoryConsumption
impl RefUnwindSafe for CommandPoolMemoryConsumption
impl !Send for CommandPoolMemoryConsumption
impl !Sync for CommandPoolMemoryConsumption
impl Unpin for CommandPoolMemoryConsumption
impl UnsafeUnpin for CommandPoolMemoryConsumption
impl UnwindSafe for CommandPoolMemoryConsumption
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