#[repr(C)]pub struct PhysicalDevicePushConstantBankPropertiesNV {
pub s_type: StructureType,
pub p_next: *mut c_void,
pub max_graphics_push_constant_banks: u32,
pub max_compute_push_constant_banks: u32,
pub max_graphics_push_data_banks: u32,
pub max_compute_push_data_banks: u32,
}Expand description
VkPhysicalDevicePushConstantBankPropertiesNV
Provided by VK_NV_push_constant_bank.
Returned only*, filled by Vulkan, not constructed by the application.
§Extends
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PUSH_CONSTANT_BANK_PROPERTIES_NV.
p_next: *mut c_voidOptional, may be null.
max_graphics_push_constant_banks: u32§max_compute_push_constant_banks: u32§max_graphics_push_data_banks: u32§max_compute_push_data_banks: u32Implementations§
Source§impl PhysicalDevicePushConstantBankPropertiesNV
impl PhysicalDevicePushConstantBankPropertiesNV
Sourcepub fn builder<'a>() -> PhysicalDevicePushConstantBankPropertiesNVBuilder<'a>
pub fn builder<'a>() -> PhysicalDevicePushConstantBankPropertiesNVBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for PhysicalDevicePushConstantBankPropertiesNV
impl Clone for PhysicalDevicePushConstantBankPropertiesNV
Source§fn clone(&self) -> PhysicalDevicePushConstantBankPropertiesNV
fn clone(&self) -> PhysicalDevicePushConstantBankPropertiesNV
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 PhysicalDevicePushConstantBankPropertiesNV
impl ExtendsPhysicalDeviceProperties2 for PhysicalDevicePushConstantBankPropertiesNV
Auto Trait Implementations§
impl Freeze for PhysicalDevicePushConstantBankPropertiesNV
impl RefUnwindSafe for PhysicalDevicePushConstantBankPropertiesNV
impl !Send for PhysicalDevicePushConstantBankPropertiesNV
impl !Sync for PhysicalDevicePushConstantBankPropertiesNV
impl Unpin for PhysicalDevicePushConstantBankPropertiesNV
impl UnsafeUnpin for PhysicalDevicePushConstantBankPropertiesNV
impl UnwindSafe for PhysicalDevicePushConstantBankPropertiesNV
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