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: String
Adapter name
vendor: usize
Vendor 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: usize
PCI id of the adapter
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<'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 ==
.source§impl Serialize for AdapterInfo
impl Serialize for AdapterInfo
impl Eq for AdapterInfo
impl StructuralEq for AdapterInfo
impl StructuralPartialEq for AdapterInfo
Auto Trait Implementations§
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