#[repr(C)]pub struct VkPhysicalDeviceDriverProperties {
pub sType: VkStructureType,
pub pNext: *mut c_void,
pub driverID: VkDriverId,
pub driverName: [c_char; 256],
pub driverInfo: [c_char; 256],
pub conformanceVersion: VkConformanceVersion,
}
Fields§
§sType: VkStructureType
§pNext: *mut c_void
§driverID: VkDriverId
§driverName: [c_char; 256]
§driverInfo: [c_char; 256]
§conformanceVersion: VkConformanceVersion
Trait Implementations§
Source§impl Clone for VkPhysicalDeviceDriverProperties
impl Clone for VkPhysicalDeviceDriverProperties
Source§fn clone(&self) -> VkPhysicalDeviceDriverProperties
fn clone(&self) -> VkPhysicalDeviceDriverProperties
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for VkPhysicalDeviceDriverProperties
Auto Trait Implementations§
impl Freeze for VkPhysicalDeviceDriverProperties
impl RefUnwindSafe for VkPhysicalDeviceDriverProperties
impl !Send for VkPhysicalDeviceDriverProperties
impl !Sync for VkPhysicalDeviceDriverProperties
impl Unpin for VkPhysicalDeviceDriverProperties
impl UnwindSafe for VkPhysicalDeviceDriverProperties
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