pub struct PrintToPdfParams {Show 17 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>,
pub generate_tagged_pdf: Option<bool>,
pub generate_document_outline: Option<bool>,
}
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 datetitle
: document titleurl
: document locationpageNumber
: current page numbertotalPages
: 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
generate_tagged_pdf: Option<bool>
Whether or not to generate tagged (accessible) PDF. Defaults to embedder choice.
generate_document_outline: Option<bool>
Whether or not to embed the document outline into the PDF.
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
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.removeNode
Source§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
DOM
Source§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
removeNode
Source§impl MethodType for PrintToPdfParams
impl MethodType for PrintToPdfParams
Source§impl PartialEq for PrintToPdfParams
impl PartialEq for PrintToPdfParams
Source§impl Serialize for PrintToPdfParams
impl Serialize for PrintToPdfParams
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
impl StructuralPartialEq for PrintToPdfParams
Auto Trait Implementations§
impl Freeze for PrintToPdfParams
impl RefUnwindSafe for PrintToPdfParams
impl Send for PrintToPdfParams
impl Sync for PrintToPdfParams
impl Unpin for PrintToPdfParams
impl UnwindSafe for PrintToPdfParams
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more