pub struct PdfExportResult {
pub file_path: String,
pub page_count: usize,
}Expand description
Result of a PDF export (to_pdf).
Fields§
§file_path: String§page_count: usizeTrait 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 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PdfExportResult
impl RefUnwindSafe for PdfExportResult
impl Send for PdfExportResult
impl Sync for PdfExportResult
impl Unpin for PdfExportResult
impl UnsafeUnpin 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