#[repr(C)]pub struct VkPhysicalDeviceProperties {
pub apiVersion: u32,
pub driverVersion: u32,
pub vendorID: u32,
pub deviceID: u32,
pub deviceType: VkPhysicalDeviceType,
pub deviceName: [c_char; 256],
pub pipelineCacheUUID: [u8; 16],
pub limits: VkPhysicalDeviceLimits,
pub sparseProperties: VkPhysicalDeviceSparseProperties,
}Fields§
§apiVersion: u32§driverVersion: u32§vendorID: u32§deviceID: u32§deviceType: VkPhysicalDeviceType§deviceName: [c_char; 256]§pipelineCacheUUID: [u8; 16]§limits: VkPhysicalDeviceLimits§sparseProperties: VkPhysicalDeviceSparsePropertiesTrait Implementations§
Source§impl Clone for VkPhysicalDeviceProperties
impl Clone for VkPhysicalDeviceProperties
Source§fn clone(&self) -> VkPhysicalDeviceProperties
fn clone(&self) -> VkPhysicalDeviceProperties
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 VkPhysicalDeviceProperties
impl Default for VkPhysicalDeviceProperties
impl Copy for VkPhysicalDeviceProperties
Auto Trait Implementations§
impl Freeze for VkPhysicalDeviceProperties
impl RefUnwindSafe for VkPhysicalDeviceProperties
impl Send for VkPhysicalDeviceProperties
impl Sync for VkPhysicalDeviceProperties
impl Unpin for VkPhysicalDeviceProperties
impl UnwindSafe for VkPhysicalDeviceProperties
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