Struct chromiumoxide::cdp::browser_protocol::page::PrintToPdfParams    
source · pub struct PrintToPdfParams {Show 15 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 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 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, one based, e.g., ‘1-5, 8, 11-13’. Pages are printed in the document order, not in the order specified, and no more than once. Defaults to empty string, which implies the entire document is printed. The page numbers are quietly capped to actual page count of the document, and ranges beyond the end of the document are ignored. If this results in no pages to print, an error is reported. It is an error to specify a range with start greater than end.
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.
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§
source§impl PrintToPdfParams
 
impl PrintToPdfParams
pub fn builder() -> PrintToPdfParamsBuilder
source§impl PrintToPdfParams
 
impl PrintToPdfParams
pub const IDENTIFIER: &'static str = "Page.printToPDF"
Trait Implementations§
source§impl Clone for PrintToPdfParams
 
impl Clone for PrintToPdfParams
source§fn clone(&self) -> PrintToPdfParams
 
fn clone(&self) -> PrintToPdfParams
1.0.0 · source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Command for PrintToPdfParams
 
impl Command for PrintToPdfParams
§type Response = PrintToPdfReturns
 
type Response = PrintToPdfReturns
source§impl Debug for PrintToPdfParams
 
impl Debug for PrintToPdfParams
source§impl Default for PrintToPdfParams
 
impl Default for PrintToPdfParams
source§fn default() -> PrintToPdfParams
 
fn default() -> PrintToPdfParams
source§impl<'de> Deserialize<'de> for PrintToPdfParams
 
impl<'de> Deserialize<'de> for PrintToPdfParams
source§fn deserialize<__D>(
    __deserializer: __D
) -> Result<PrintToPdfParams, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>( __deserializer: __D ) -> Result<PrintToPdfParams, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
source§impl Method for PrintToPdfParams
 
impl Method for PrintToPdfParams
source§fn identifier(&self) -> Cow<'static, str>
 
fn identifier(&self) -> Cow<'static, str>
DOM.removeNodesource§fn domain_name(&self) -> Cow<'static, str>
 
fn domain_name(&self) -> Cow<'static, str>
DOMsource§fn method_name(&self) -> Cow<'static, str>
 
fn method_name(&self) -> Cow<'static, str>
removeNodesource§impl MethodType for PrintToPdfParams
 
impl MethodType for PrintToPdfParams
source§impl PartialEq for PrintToPdfParams
 
impl PartialEq for PrintToPdfParams
source§fn eq(&self, other: &PrintToPdfParams) -> bool
 
fn eq(&self, other: &PrintToPdfParams) -> bool
self and other values to be equal, and is used
by ==.