#[repr(C)]pub struct PhysicalDevicePushDescriptorProperties {
pub s_type: StructureType,
pub p_next: *mut c_void,
pub max_push_descriptors: u32,
}Expand description
VkPhysicalDevicePushDescriptorProperties
Provided by VK_COMPUTE_VERSION_1_4.
Returned only*, filled by Vulkan, not constructed by the application.
§Extends
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_PUSH_DESCRIPTOR_PROPERTIES.
p_next: *mut c_voidOptional, may be null.
max_push_descriptors: u32Implementations§
Source§impl PhysicalDevicePushDescriptorProperties
impl PhysicalDevicePushDescriptorProperties
Sourcepub fn builder<'a>() -> PhysicalDevicePushDescriptorPropertiesBuilder<'a>
pub fn builder<'a>() -> PhysicalDevicePushDescriptorPropertiesBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for PhysicalDevicePushDescriptorProperties
impl Clone for PhysicalDevicePushDescriptorProperties
Source§fn clone(&self) -> PhysicalDevicePushDescriptorProperties
fn clone(&self) -> PhysicalDevicePushDescriptorProperties
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 Default for PhysicalDevicePushDescriptorProperties
impl Default for PhysicalDevicePushDescriptorProperties
Source§fn default() -> PhysicalDevicePushDescriptorProperties
fn default() -> PhysicalDevicePushDescriptorProperties
Returns the “default value” for a type. Read more
impl Copy for PhysicalDevicePushDescriptorProperties
impl ExtendsPhysicalDeviceProperties2 for PhysicalDevicePushDescriptorProperties
Auto Trait Implementations§
impl Freeze for PhysicalDevicePushDescriptorProperties
impl RefUnwindSafe for PhysicalDevicePushDescriptorProperties
impl !Send for PhysicalDevicePushDescriptorProperties
impl !Sync for PhysicalDevicePushDescriptorProperties
impl Unpin for PhysicalDevicePushDescriptorProperties
impl UnsafeUnpin for PhysicalDevicePushDescriptorProperties
impl UnwindSafe for PhysicalDevicePushDescriptorProperties
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