[][src]Struct webdriver::command::PrintParameters

pub struct PrintParameters {
    pub orientation: PrintOrientation,
    pub scale: f64,
    pub background: bool,
    pub page: PrintPage,
    pub margin: PrintMargins,
    pub page_ranges: Vec<String>,
    pub shrink_to_fit: bool,
}

Fields

orientation: PrintOrientationscale: f64background: boolpage: PrintPagemargin: PrintMarginspage_ranges: Vec<String>shrink_to_fit: bool

Trait Implementations

impl Clone for PrintParameters[src]

impl Debug for PrintParameters[src]

impl Default for PrintParameters[src]

impl<'de> Deserialize<'de> for PrintParameters where
    PrintParameters: Default
[src]

impl PartialEq<PrintParameters> for PrintParameters[src]

impl Serialize for PrintParameters[src]

impl StructuralPartialEq for PrintParameters[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> Instrument 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.