Struct chromiumoxide::cdp::browser_protocol::emulation::SetDeviceMetricsOverrideParams[][src]

pub struct SetDeviceMetricsOverrideParams {
    pub width: i64,
    pub height: i64,
    pub device_scale_factor: f64,
    pub mobile: bool,
    pub scale: Option<f64>,
    pub screen_width: Option<i64>,
    pub screen_height: Option<i64>,
    pub position_x: Option<i64>,
    pub position_y: Option<i64>,
    pub dont_set_visible_size: Option<bool>,
    pub screen_orientation: Option<ScreenOrientation>,
    pub viewport: Option<Viewport>,
    pub display_feature: Option<DisplayFeature>,
}

Overrides the values of device screen dimensions (window.screen.width, window.screen.height, window.innerWidth, window.innerHeight, and “device-width”/“device-height”-related CSS media query results). setDeviceMetricsOverride

Fields

width: i64

Overriding width value in pixels (minimum 0, maximum 10000000). 0 disables the override.

height: i64

Overriding height value in pixels (minimum 0, maximum 10000000). 0 disables the override.

device_scale_factor: f64

Overriding device scale factor value. 0 disables the override.

mobile: bool

Whether to emulate mobile device. This includes viewport meta tag, overlay scrollbars, text autosizing and more.

scale: Option<f64>

Scale to apply to resulting view image.

screen_width: Option<i64>

Overriding screen width value in pixels (minimum 0, maximum 10000000).

screen_height: Option<i64>

Overriding screen height value in pixels (minimum 0, maximum 10000000).

position_x: Option<i64>

Overriding view X position on screen in pixels (minimum 0, maximum 10000000).

position_y: Option<i64>

Overriding view Y position on screen in pixels (minimum 0, maximum 10000000).

dont_set_visible_size: Option<bool>

Do not set visible view size, rely upon explicit setVisibleSize call.

screen_orientation: Option<ScreenOrientation>

Screen orientation override.

viewport: Option<Viewport>

If set, the visible area of the page will be overridden to this viewport. This viewport change is not observed by the page, e.g. viewport-relative elements do not change positions.

display_feature: Option<DisplayFeature>

If set, the display feature of a multi-segment screen. If not set, multi-segment support is turned-off.

Implementations

impl SetDeviceMetricsOverrideParams[src]

pub fn new(
    width: impl Into<i64>,
    height: impl Into<i64>,
    device_scale_factor: impl Into<f64>,
    mobile: impl Into<bool>
) -> SetDeviceMetricsOverrideParams
[src]

impl SetDeviceMetricsOverrideParams[src]

impl SetDeviceMetricsOverrideParams[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for SetDeviceMetricsOverrideParams[src]

impl Command for SetDeviceMetricsOverrideParams[src]

type Response = SetDeviceMetricsOverrideReturns

The type of the response this request triggers on the chromium server

impl Debug for SetDeviceMetricsOverrideParams[src]

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

impl Method for SetDeviceMetricsOverrideParams[src]

impl MethodType for SetDeviceMetricsOverrideParams[src]

impl PartialEq<SetDeviceMetricsOverrideParams> for SetDeviceMetricsOverrideParams[src]

impl Serialize for SetDeviceMetricsOverrideParams[src]

impl StructuralPartialEq for SetDeviceMetricsOverrideParams[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>,