pub enum PageLabelStyle {
Decimal,
RomanUpper,
RomanLower,
LettersUpper,
LettersLower,
None,
}Expand description
The numbering style of a label’s numeric portion (ISO 32000-1 Table 159).
Variants§
Decimal
/D — decimal arabic numerals (1, 2, 3, …).
RomanUpper
/R — uppercase roman numerals (I, II, III, …).
RomanLower
/r — lowercase roman numerals (i, ii, iii, …).
LettersUpper
/A — uppercase letters (A, B, …, Z, AA, BB, …).
LettersLower
/a — lowercase letters (a, b, …, z, aa, bb, …).
None
No /S — the label has only its /P prefix and no numeric portion.
Trait Implementations§
Source§impl Clone for PageLabelStyle
impl Clone for PageLabelStyle
Source§fn clone(&self) -> PageLabelStyle
fn clone(&self) -> PageLabelStyle
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 PageLabelStyle
Source§impl Debug for PageLabelStyle
impl Debug for PageLabelStyle
impl Eq for PageLabelStyle
Source§impl PartialEq for PageLabelStyle
impl PartialEq for PageLabelStyle
impl StructuralPartialEq for PageLabelStyle
Auto Trait Implementations§
impl Freeze for PageLabelStyle
impl RefUnwindSafe for PageLabelStyle
impl Send for PageLabelStyle
impl Sync for PageLabelStyle
impl Unpin for PageLabelStyle
impl UnsafeUnpin for PageLabelStyle
impl UnwindSafe for PageLabelStyle
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