Struct wgpu_types::AdapterInfo
source · [−]pub struct AdapterInfo {
pub name: String,
pub vendor: usize,
pub device: usize,
pub device_type: DeviceType,
pub backend: Backend,
}
Expand description
Information about an adapter.
Fields
name: String
Adapter name
vendor: usize
Vendor PCI id of the adapter
device: usize
PCI id of the adapter
device_type: DeviceType
Type of device
backend: Backend
Backend used for device
Trait Implementations
sourceimpl Clone for AdapterInfo
impl Clone for AdapterInfo
sourcefn clone(&self) -> AdapterInfo
fn clone(&self) -> AdapterInfo
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for AdapterInfo
impl Debug for AdapterInfo
sourceimpl PartialEq<AdapterInfo> for AdapterInfo
impl PartialEq<AdapterInfo> for AdapterInfo
sourcefn 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 ==
. Read more
sourcefn ne(&self, other: &AdapterInfo) -> bool
fn ne(&self, other: &AdapterInfo) -> bool
This method tests for !=
.
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more