Struct chrome_remote_interface_model::system_info::GpuInfo[][src]

pub struct GpuInfo { /* fields omitted */ }
This is supported on crate features experimental and SystemInfo only.

Provides information about the GPU(s) on the system.

Implementations

impl GpuInfo[src]

pub fn builder() -> GpuInfoBuilder[src]

pub fn devices(&self) -> &[GpuDevice]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

The graphics devices on the system. Element 0 is the primary GPU.

pub fn aux_attributes(&self) -> Option<&GpuInfoAuxAttributes>[src]

An optional dictionary of additional GPU related attributes.

pub fn feature_status(&self) -> Option<&GpuInfoFeatureStatus>[src]

An optional dictionary of graphics features and their status.

pub fn driver_bug_workarounds(&self) -> &[String]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

An optional array of GPU driver bug workarounds.

pub fn video_decoding(&self) -> &[VideoDecodeAcceleratorCapability]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

Supported accelerated video decoding capabilities.

pub fn video_encoding(&self) -> &[VideoEncodeAcceleratorCapability]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

Supported accelerated video encoding capabilities.

pub fn image_decoding(&self) -> &[ImageDecodeAcceleratorCapability]

Notable traits for &'_ [u8]

impl<'_> Read for &'_ [u8]impl<'_> Write for &'_ mut [u8]
[src]

Supported accelerated image decoding capabilities.

Trait Implementations

impl Clone for GpuInfo[src]

impl Debug for GpuInfo[src]

impl<'de> Deserialize<'de> for GpuInfo[src]

impl Serialize for GpuInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.