#[repr(C)]pub struct PhysicalDeviceDriverProperties {
pub s_type: StructureType,
pub next: *mut c_void,
pub driver_id: DriverId,
pub driver_name: StringArray<MAX_DRIVER_NAME_SIZE>,
pub driver_info: StringArray<MAX_DRIVER_INFO_SIZE>,
pub conformance_version: ConformanceVersion,
}Expand description
Fields§
§s_type: StructureType§next: *mut c_void§driver_id: DriverId§driver_name: StringArray<MAX_DRIVER_NAME_SIZE>§driver_info: StringArray<MAX_DRIVER_INFO_SIZE>§conformance_version: ConformanceVersionTrait 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 PartialEq for PhysicalDeviceDriverProperties
impl PartialEq for PhysicalDeviceDriverProperties
Source§fn eq(&self, other: &PhysicalDeviceDriverProperties) -> bool
fn eq(&self, other: &PhysicalDeviceDriverProperties) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for PhysicalDeviceDriverProperties
impl Eq for PhysicalDeviceDriverProperties
impl Send for PhysicalDeviceDriverProperties
impl StructuralPartialEq for PhysicalDeviceDriverProperties
impl Sync for PhysicalDeviceDriverProperties
Auto Trait Implementations§
impl Freeze for PhysicalDeviceDriverProperties
impl RefUnwindSafe for PhysicalDeviceDriverProperties
impl Unpin 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