pub enum PaperFormat {
Letter,
Legal,
Tabloid,
Ledger,
A0,
A1,
A2,
A3,
A4,
A5,
A6,
}Expand description
Standard paper sizes.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for PaperFormat
impl Clone for PaperFormat
Source§fn clone(&self) -> PaperFormat
fn clone(&self) -> PaperFormat
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 PaperFormat
Source§impl Debug for PaperFormat
impl Debug for PaperFormat
Source§impl PartialEq for PaperFormat
impl PartialEq for PaperFormat
impl StructuralPartialEq for PaperFormat
Auto Trait Implementations§
impl Freeze for PaperFormat
impl RefUnwindSafe for PaperFormat
impl Send for PaperFormat
impl Sync for PaperFormat
impl Unpin for PaperFormat
impl UnsafeUnpin for PaperFormat
impl UnwindSafe for PaperFormat
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