Struct chrome_remote_interface_model::emulation::SetUserAgentOverrideCommand[][src]

pub struct SetUserAgentOverrideCommand { /* fields omitted */ }
This is supported on crate features Emulation and DOM and Page and Runtime only.

Allows overriding user agent with the given string.

Implementations

impl SetUserAgentOverrideCommand[src]

pub fn builder() -> SetUserAgentOverrideCommandBuilder[src]

pub fn user_agent(&self) -> &str[src]

User agent to use.

pub fn accept_language(&self) -> Option<&String>[src]

Browser langugage to emulate.

pub fn platform(&self) -> Option<&String>[src]

The platform navigator.platform should return.

pub fn user_agent_metadata(&self) -> Option<&JsonValue>[src]

This is supported on crate feature experimental only.

To be sent in Sec-CH-UA-* headers and returned in navigator.userAgentData

Trait Implementations

impl Clone for SetUserAgentOverrideCommand[src]

impl Command for SetUserAgentOverrideCommand[src]

type Return = SetUserAgentOverrideReturn

Return type.

impl Debug for SetUserAgentOverrideCommand[src]

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

impl Serialize for SetUserAgentOverrideCommand[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.