pub struct PdfExportResult {
pub pdf_base64: String,
pub filename: String,
pub page_count: u32,
pub title: String,
}Expand description
Result of PDF export operation
Fields§
§pdf_base64: StringPDF content as base64-encoded bytes
filename: StringFilename suggestion
page_count: u32Number of pages
title: StringDocument title
Trait Implementations§
Source§impl Clone for PdfExportResult
impl Clone for PdfExportResult
Source§fn clone(&self) -> PdfExportResult
fn clone(&self) -> PdfExportResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PdfExportResult
impl Debug for PdfExportResult
Source§impl<'de> Deserialize<'de> for PdfExportResult
impl<'de> Deserialize<'de> for PdfExportResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PdfExportResult
impl RefUnwindSafe for PdfExportResult
impl Send for PdfExportResult
impl Sync for PdfExportResult
impl Unpin for PdfExportResult
impl UnwindSafe for PdfExportResult
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
Mutably borrows from an owned value. Read more