Struct wgpu_types::AdapterInfo
source · pub struct AdapterInfo {
pub name: String,
pub vendor: u32,
pub device: u32,
pub device_type: DeviceType,
pub driver: String,
pub driver_info: String,
pub backend: Backend,
}
Expand description
Information about an adapter.
Fields§
§name: String
Adapter name
vendor: u32
Backend
-specific vendor ID of the adapter
This generally is a 16-bit PCI vendor ID in the least significant bytes of this field. However, more significant bytes may be non-zero if the backend uses a different representation.
- For
Backend::Vulkan
, theVkPhysicalDeviceProperties::vendorID
is used, which is a superset of PCI IDs.
device: u32
Backend
-specific device ID of the adapter
This generally is a 16-bit PCI device ID in the least significant bytes of this field. However, more significant bytes may be non-zero if the backend uses a different representation.
- For
Backend::Vulkan
, theVkPhysicalDeviceProperties::deviceID
is used, which is a superset of PCI IDs.
device_type: DeviceType
Type of device
driver: String
Driver name
driver_info: String
Driver info
backend: Backend
Backend used for device
Trait Implementations§
source§impl Clone for AdapterInfo
impl Clone for AdapterInfo
source§fn clone(&self) -> AdapterInfo
fn clone(&self) -> AdapterInfo
Returns a copy 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 AdapterInfo
impl Debug for AdapterInfo
source§impl PartialEq for AdapterInfo
impl PartialEq for AdapterInfo
source§fn eq(&self, other: &AdapterInfo) -> bool
fn eq(&self, other: &AdapterInfo) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for AdapterInfo
impl StructuralPartialEq for AdapterInfo
Auto Trait Implementations§
impl Freeze for AdapterInfo
impl RefUnwindSafe for AdapterInfo
impl Send for AdapterInfo
impl Sync for AdapterInfo
impl Unpin for AdapterInfo
impl UnwindSafe for AdapterInfo
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