pub struct AdapterProbeReport {
pub probed: Vec<String>,
pub missing: Vec<String>,
}Expand description
Human-readable adapter probe details for GPU acquisition failures.
Fields§
§probed: Vec<String>Adapters visible to wgpu during the centralized probe.
missing: Vec<String>Feature, limit, or device-request reasons that prevented use.
Trait Implementations§
Source§impl Clone for AdapterProbeReport
impl Clone for AdapterProbeReport
Source§fn clone(&self) -> AdapterProbeReport
fn clone(&self) -> AdapterProbeReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AdapterProbeReport
impl Debug for AdapterProbeReport
Source§impl Default for AdapterProbeReport
impl Default for AdapterProbeReport
Source§fn default() -> AdapterProbeReport
fn default() -> AdapterProbeReport
Returns the “default value” for a type. Read more
impl Eq for AdapterProbeReport
Source§impl PartialEq for AdapterProbeReport
impl PartialEq for AdapterProbeReport
impl StructuralPartialEq for AdapterProbeReport
Auto Trait Implementations§
impl Freeze for AdapterProbeReport
impl RefUnwindSafe for AdapterProbeReport
impl Send for AdapterProbeReport
impl Sync for AdapterProbeReport
impl Unpin for AdapterProbeReport
impl UnsafeUnpin for AdapterProbeReport
impl UnwindSafe for AdapterProbeReport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.