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

pub struct PrintToPdfParams {
Show fields 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>,
}
Expand description

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

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

deserialize the response from json

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

The whole string identifier for this method like: DOM.removeNode

The name of the domain this method belongs to: DOM

The standalone identifier of the method inside the domain: removeNode

Tuple of (domain_name, method_name) : (DOM, removeNode)

The identifier for this event’s method field

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.