Struct wgpu_types::AdapterInfo
source · pub struct AdapterInfo {
pub name: String,
pub vendor: usize,
pub device: usize,
pub device_type: DeviceType,
pub driver: String,
pub driver_info: String,
pub backend: Backend,
}Expand description
Information about an adapter.
Fields§
§name: StringAdapter name
vendor: usizeVendor PCI id of the adapter
If the vendor has no PCI id, then this value will be the backend’s vendor id equivalent. On Vulkan,
Mesa would have a vendor id equivalent to it’s VkVendorId value.
device: usizePCI id of the adapter
device_type: DeviceTypeType of device
driver: StringDriver name
driver_info: StringDriver info
backend: BackendBackend 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<'de> Deserialize<'de> for AdapterInfo
impl<'de> Deserialize<'de> for AdapterInfo
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq<AdapterInfo> for AdapterInfo
impl PartialEq<AdapterInfo> 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 ==.