#[repr(C)]pub struct PhysicalDeviceDriverProperties {
pub s_type: StructureType,
pub p_next: *mut c_void,
pub driver_id: DriverId,
pub driver_name: StringArray<vulkan_rust_sys::::structs::PhysicalDeviceDriverProperties::driver_name::{constant#0}>,
pub driver_info: StringArray<vulkan_rust_sys::::structs::PhysicalDeviceDriverProperties::driver_info::{constant#0}>,
pub conformance_version: ConformanceVersion,
}Expand description
VkPhysicalDeviceDriverProperties
Provided by VK_BASE_VERSION_1_2.
Returned only*, filled by Vulkan, not constructed by the application.
§Extends
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_PHYSICAL_DEVICE_DRIVER_PROPERTIES.
p_next: *mut c_voidOptional, may be null.
driver_id: DriverId§driver_name: StringArray<vulkan_rust_sys::::structs::PhysicalDeviceDriverProperties::driver_name::{constant#0}>§driver_info: StringArray<vulkan_rust_sys::::structs::PhysicalDeviceDriverProperties::driver_info::{constant#0}>§conformance_version: ConformanceVersionImplementations§
Source§impl PhysicalDeviceDriverProperties
impl PhysicalDeviceDriverProperties
Sourcepub fn builder<'a>() -> PhysicalDeviceDriverPropertiesBuilder<'a>
pub fn builder<'a>() -> PhysicalDeviceDriverPropertiesBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for PhysicalDeviceDriverProperties
impl Clone for PhysicalDeviceDriverProperties
Source§fn clone(&self) -> PhysicalDeviceDriverProperties
fn clone(&self) -> PhysicalDeviceDriverProperties
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 PhysicalDeviceDriverProperties
impl Default for PhysicalDeviceDriverProperties
Source§fn default() -> PhysicalDeviceDriverProperties
fn default() -> PhysicalDeviceDriverProperties
Returns the “default value” for a type. Read more
impl Copy for PhysicalDeviceDriverProperties
impl ExtendsPhysicalDeviceProperties2 for PhysicalDeviceDriverProperties
Auto Trait Implementations§
impl Freeze for PhysicalDeviceDriverProperties
impl RefUnwindSafe for PhysicalDeviceDriverProperties
impl !Send for PhysicalDeviceDriverProperties
impl !Sync for PhysicalDeviceDriverProperties
impl Unpin for PhysicalDeviceDriverProperties
impl UnsafeUnpin for PhysicalDeviceDriverProperties
impl UnwindSafe for PhysicalDeviceDriverProperties
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