#[repr(C)]pub struct PhysicalDeviceToolProperties {
pub s_type: StructureType,
pub p_next: *mut c_void,
pub name: StringArray<{ _ }>,
pub version: StringArray<{ _ }>,
pub purposes: ToolPurposeFlags,
pub description: StringArray<{ _ }>,
pub layer: StringArray<{ _ }>,
}Expand description
VkPhysicalDeviceToolProperties
Provided by VK_BASE_VERSION_1_3.
Returned only*, filled by Vulkan, not constructed by the application.
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_TOOL_PROPERTIES.
p_next: *mut c_voidOptional, may be null.
name: StringArray<{ _ }>§version: StringArray<{ _ }>§purposes: ToolPurposeFlags§description: StringArray<{ _ }>§layer: StringArray<{ _ }>Implementations§
Source§impl PhysicalDeviceToolProperties
impl PhysicalDeviceToolProperties
Sourcepub fn builder<'a>() -> PhysicalDeviceToolPropertiesBuilder<'a>
pub fn builder<'a>() -> PhysicalDeviceToolPropertiesBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for PhysicalDeviceToolProperties
impl Clone for PhysicalDeviceToolProperties
Source§fn clone(&self) -> PhysicalDeviceToolProperties
fn clone(&self) -> PhysicalDeviceToolProperties
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 PhysicalDeviceToolProperties
impl Debug for PhysicalDeviceToolProperties
impl Copy for PhysicalDeviceToolProperties
Auto Trait Implementations§
impl Freeze for PhysicalDeviceToolProperties
impl RefUnwindSafe for PhysicalDeviceToolProperties
impl !Send for PhysicalDeviceToolProperties
impl !Sync for PhysicalDeviceToolProperties
impl Unpin for PhysicalDeviceToolProperties
impl UnsafeUnpin for PhysicalDeviceToolProperties
impl UnwindSafe for PhysicalDeviceToolProperties
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