Struct chromiumoxide::cdp::browser_protocol::system_info::GetInfoReturns[][src]

pub struct GetInfoReturns {
    pub gpu: GpuInfo,
    pub model_name: String,
    pub model_version: String,
    pub command_line: String,
}

Returns information about the system. getInfo

Fields

gpu: GpuInfo

Information about the GPUs on the system.

model_name: String

A platform-dependent description of the model of the machine. On Mac OS, this is, for example, ‘MacBookPro’. Will be the empty string if not supported.

model_version: String

A platform-dependent description of the version of the machine. On Mac OS, this is, for example, ‘10.1’. Will be the empty string if not supported.

command_line: String

The command line string used to launch the browser. Will be the empty string if not supported.

Implementations

impl GetInfoReturns[src]

pub fn new(
    gpu: impl Into<GpuInfo>,
    model_name: impl Into<String>,
    model_version: impl Into<String>,
    command_line: impl Into<String>
) -> GetInfoReturns
[src]

impl GetInfoReturns[src]

Trait Implementations

impl Clone for GetInfoReturns[src]

impl Debug for GetInfoReturns[src]

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

impl PartialEq<GetInfoReturns> for GetInfoReturns[src]

impl Serialize for GetInfoReturns[src]

impl StructuralPartialEq for GetInfoReturns[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> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,