pub enum PaperSize {
A4,
A4Landscape,
A5,
A5Landscape,
Letter,
LetterLandscape,
Legal,
LegalLandscape,
Square,
Custom(f64, f64),
}Expand description
Built-in paper presets (dimensions in pixels at 96 DPI).
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PaperSize
impl RefUnwindSafe for PaperSize
impl Send for PaperSize
impl Sync for PaperSize
impl Unpin for PaperSize
impl UnsafeUnpin for PaperSize
impl UnwindSafe for PaperSize
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