pub struct NUpOptions {
pub sheet: (f32, f32),
pub grid: (u32, u32),
}Expand description
How an N-up imposition behaves.
Fields§
§sheet: (f32, f32)The sheet’s size in points.
grid: (u32, u32)Columns and rows of sub-pages per sheet.
Trait Implementations§
Source§impl Clone for NUpOptions
impl Clone for NUpOptions
Source§fn clone(&self) -> NUpOptions
fn clone(&self) -> NUpOptions
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 moreimpl Copy for NUpOptions
Source§impl Debug for NUpOptions
impl Debug for NUpOptions
Source§impl Default for NUpOptions
impl Default for NUpOptions
Source§impl PartialEq for NUpOptions
impl PartialEq for NUpOptions
impl StructuralPartialEq for NUpOptions
Auto Trait Implementations§
impl Freeze for NUpOptions
impl RefUnwindSafe for NUpOptions
impl Send for NUpOptions
impl Sync for NUpOptions
impl Unpin for NUpOptions
impl UnsafeUnpin for NUpOptions
impl UnwindSafe for NUpOptions
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