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

pub struct SetPageScaleFactorParams {
    pub page_scale_factor: f64,
}

Sets a specified page scale factor. setPageScaleFactor

Fields

page_scale_factor: f64

Page scale factor.

Implementations

impl SetPageScaleFactorParams[src]

pub fn new(page_scale_factor: impl Into<f64>) -> SetPageScaleFactorParams[src]

impl SetPageScaleFactorParams[src]

impl SetPageScaleFactorParams[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for SetPageScaleFactorParams[src]

impl Command for SetPageScaleFactorParams[src]

type Response = SetPageScaleFactorReturns

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

impl Debug for SetPageScaleFactorParams[src]

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

impl Method for SetPageScaleFactorParams[src]

impl MethodType for SetPageScaleFactorParams[src]

impl PartialEq<SetPageScaleFactorParams> for SetPageScaleFactorParams[src]

impl Serialize for SetPageScaleFactorParams[src]

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