pub struct ExistingDocumentMergeInput {
pub path: PathBuf,
pub pages: Option<PageRange>,
}Expand description
Input to a semantic merge of existing PDF documents.
Fields§
§path: PathBufPDF path.
pages: Option<PageRange>Pages to include, or all pages when omitted.
Implementations§
Trait Implementations§
Source§impl Clone for ExistingDocumentMergeInput
impl Clone for ExistingDocumentMergeInput
Source§fn clone(&self) -> ExistingDocumentMergeInput
fn clone(&self) -> ExistingDocumentMergeInput
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 ExistingDocumentMergeInput
impl RefUnwindSafe for ExistingDocumentMergeInput
impl Send for ExistingDocumentMergeInput
impl Sync for ExistingDocumentMergeInput
impl Unpin for ExistingDocumentMergeInput
impl UnsafeUnpin for ExistingDocumentMergeInput
impl UnwindSafe for ExistingDocumentMergeInput
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