pub enum PageLayout {
SinglePage,
OneColumn,
TwoColumnLeft,
TwoColumnRight,
TwoPageLeft,
TwoPageRight,
}Expand description
Initial page-layout mode, written as the catalog’s /PageLayout (ISO
32000 §7.7.2, Table 27).
Variants§
SinglePage
One page at a time.
OneColumn
One continuously scrolling column of pages.
TwoColumnLeft
Two columns, an odd-numbered page on the left.
TwoColumnRight
Two columns, an odd-numbered page on the right.
TwoPageLeft
Two pages at a time, an odd-numbered page on the left.
TwoPageRight
Two pages at a time, an odd-numbered page on the right.
Trait Implementations§
Source§impl Clone for PageLayout
impl Clone for PageLayout
Source§fn clone(&self) -> PageLayout
fn clone(&self) -> PageLayout
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 PageLayout
Source§impl Debug for PageLayout
impl Debug for PageLayout
Source§impl PartialEq for PageLayout
impl PartialEq for PageLayout
impl StructuralPartialEq for PageLayout
Auto Trait Implementations§
impl Freeze for PageLayout
impl RefUnwindSafe for PageLayout
impl Send for PageLayout
impl Sync for PageLayout
impl Unpin for PageLayout
impl UnsafeUnpin for PageLayout
impl UnwindSafe for PageLayout
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