pub(crate) struct GpuReport {
pub devices: Vec<AdapterReport>,
}
Expand description
Report specifying the capabilities of the GPUs on the system.
Must be synchronized with the definition on wgpu-info/src/report.rs.
Fields§
§devices: Vec<AdapterReport>
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for GpuReport
impl<'de> Deserialize<'de> for GpuReport
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
Auto Trait Implementations§
impl Freeze for GpuReport
impl RefUnwindSafe for GpuReport
impl Send for GpuReport
impl Sync for GpuReport
impl Unpin for GpuReport
impl UnwindSafe for GpuReport
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