Struct chromiumoxide::cdp::browser_protocol::page::PrintToPdfParams[][src]

pub struct PrintToPdfParams {
    pub landscape: Option<bool>,
    pub display_header_footer: Option<bool>,
    pub print_background: Option<bool>,
    pub scale: Option<f64>,
    pub paper_width: Option<f64>,
    pub paper_height: Option<f64>,
    pub margin_top: Option<f64>,
    pub margin_bottom: Option<f64>,
    pub margin_left: Option<f64>,
    pub margin_right: Option<f64>,
    pub page_ranges: Option<String>,
    pub ignore_invalid_page_ranges: Option<bool>,
    pub header_template: Option<String>,
    pub footer_template: Option<String>,
    pub prefer_css_page_size: Option<bool>,
    pub transfer_mode: Option<PrintToPdfTransferMode>,
}

Print page as PDF. printToPDF

Fields

landscape: Option<bool>

Paper orientation. Defaults to false.

display_header_footer: Option<bool>

Display header and footer. Defaults to false.

print_background: Option<bool>

Print background graphics. Defaults to false.

scale: Option<f64>

Scale of the webpage rendering. Defaults to 1.

paper_width: Option<f64>

Paper width in inches. Defaults to 8.5 inches.

paper_height: Option<f64>

Paper height in inches. Defaults to 11 inches.

margin_top: Option<f64>

Top margin in inches. Defaults to 1cm (~0.4 inches).

margin_bottom: Option<f64>

Bottom margin in inches. Defaults to 1cm (~0.4 inches).

margin_left: Option<f64>

Left margin in inches. Defaults to 1cm (~0.4 inches).

margin_right: Option<f64>

Right margin in inches. Defaults to 1cm (~0.4 inches).

page_ranges: Option<String>

Paper ranges to print, e.g., ‘1-5, 8, 11-13’. Defaults to the empty string, which means print all pages.

ignore_invalid_page_ranges: Option<bool>

Whether to silently ignore invalid but successfully parsed page ranges, such as ‘3-2’. Defaults to false.

header_template: Option<String>

HTML template for the print header. Should be valid HTML markup with following classes used to inject printing values into them:

  • date: formatted print date
  • title: document title
  • url: document location
  • pageNumber: current page number
  • totalPages: total pages in the document

For example, <span class=title></span> would generate span containing the title.

footer_template: Option<String>

HTML template for the print footer. Should use the same format as the headerTemplate.

prefer_css_page_size: Option<bool>

Whether or not to prefer page size as defined by css. Defaults to false, in which case the content will be scaled to fit the paper size.

transfer_mode: Option<PrintToPdfTransferMode>

return as stream

Implementations

impl PrintToPdfParams[src]

impl PrintToPdfParams[src]

pub const IDENTIFIER: &'static str[src]

Trait Implementations

impl Clone for PrintToPdfParams[src]

impl Command for PrintToPdfParams[src]

type Response = PrintToPdfReturns

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

impl Debug for PrintToPdfParams[src]

impl Default for PrintToPdfParams[src]

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

impl Method for PrintToPdfParams[src]

impl MethodType for PrintToPdfParams[src]

impl PartialEq<PrintToPdfParams> for PrintToPdfParams[src]

impl Serialize for PrintToPdfParams[src]

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